/* Fonts */
:root {
  --default-font: "Merriweather Sans", sans-serif;
  --heading-font: "Merriweather Sans", sans-serif;
  --nav-font: "Merriweather Sans", 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: #2d3436;
  --default-color: #e8e8e8;
  --heading-color: #ffffff;
  --accent-color: #6bcb94;
  --accent-color-light: #a8e6cf;
  --accent-color-dark: #4fb87d;
  --surface-color: #3d4245;
  --contrast-color: #ffffff;
  --nav-color: #e8e8e8;
  --nav-hover-color: #6bcb94;
  --nav-mobile-background-color: #3d4245;
  --nav-dropdown-background-color: #3d4245;
  --nav-dropdown-color: #e8e8e8;
  --nav-dropdown-hover-color: #6bcb94;
  --footer-bg: #1a1a1a;
  --footer-newsletter: #2d3436;
  --dark-gray: #1a1a1a;
  --medium-gray: #2d3436;
  --light-gray: #3d4245;
  --lighter-gray: #4a4f52;
  --light-green: #a8e6cf;
  --medium-green: #6bcb94;
  --dark-green: #4fb87d;
}


/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #3d4245;
  --surface-color: #4a4f52;
}

.dark-background {
  --background-color: #1a1a1a;
  --default-color: #e8e8e8;
  --heading-color: #ffffff;
  --surface-color: #2d3436;
  --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 {
  background: linear-gradient(135deg, rgba(45, 52, 54, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  padding: 18px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  border-bottom: 1px solid rgba(107, 203, 148, 0.2);
}

.header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.3px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  background: #ffffff;
  color: var(--accent-color);
  font-size: 15px;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.header .btn-getstarted svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.header .btn-getstarted:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
  color: #5a4fcf;
}

.header .btn-getstarted:hover svg {
  transform: translateX(3px);
}

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

  .navmenu ul {
    display: flex;
    gap: 25px;
    align-items: center;
    list-style: none;
    margin: 0 1rem 0 0;
    padding: 0;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a {
    font-size: 15px;
    color: rgba(232, 232, 232, 0.9);
    text-decoration: none;
    padding: 10px 16px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .navmenu a svg {
    width: 18px;
    height: 18px;
    opacity: 0.9;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }

  .navmenu a::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: #ffffff;
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 2px;
  }

  .navmenu a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }

  .navmenu a:hover svg {
    opacity: 1;
    transform: scale(1.1);
  }

  .navmenu a:hover::before,
  .navmenu .active::before {
    width: 60%;
  }

  .navmenu .active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    font-weight: 600;
  }

  .navmenu .active svg {
    opacity: 1;
  }

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

/* Sticky effect on scroll */
.scrolled .header {
  background: linear-gradient(135deg, rgba(45, 52, 54, 0.99) 0%, rgba(26, 26, 26, 0.99) 100%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  padding: 12px 0;
}

.scrolled .header .navmenu a {
  color: rgba(232, 232, 232, 0.95);
}

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

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 8px 18px;
    font-size: 14px;
  }

  .header .navmenu {
    order: 3;
    display: none;
  }
  
  .mobile-menu-toggle {
    order: 3;
  }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 1199px) {
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: rgba(107, 203, 148, 0.15);
    border: 2px solid rgba(107, 203, 148, 0.3);
    border-radius: 12px;
    color: var(--accent-color);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 15px;
  }

  .mobile-menu-toggle:hover {
    background: rgba(107, 203, 148, 0.25);
    border-color: var(--accent-color);
    transform: scale(1.05);
  }

  .mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
}

.mobile-menu-content {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: linear-gradient(180deg, #2d3436 0%, #1a1a1a 100%);
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.5);
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(107, 203, 148, 0.15);
  border: 2px solid rgba(107, 203, 148, 0.3);
  border-radius: 12px;
  color: var(--accent-color);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10000;
}

.mobile-menu-close:hover {
  background: rgba(107, 203, 148, 0.25);
  border-color: var(--accent-color);
  transform: rotate(90deg);
}

.mobile-menu-close svg {
  width: 20px;
  height: 20px;
}

.mobile-menu-nav {
  padding: 80px 0 40px;
}

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

.mobile-menu-nav li {
  margin: 0;
  border-bottom: 1px solid rgba(107, 203, 148, 0.1);
}

.mobile-menu-nav li:last-child {
  border-bottom: none;
}

.mobile-menu-nav a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  color: var(--default-color);
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Merriweather Sans', sans-serif;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
  background: rgba(107, 203, 148, 0.1);
  color: var(--accent-color);
  padding-left: 32px;
}

.mobile-menu-nav a svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--accent-color);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.mobile-menu-nav a:hover svg,
.mobile-menu-nav a.active svg {
  opacity: 1;
  transform: scale(1.1);
}

.mobile-menu-nav a span {
  flex: 1;
}

body.mobile-menu-open {
  overflow: hidden;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/* General Footer Styling */
.footer-section {
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  color: #e0e0e0;
  font-family: 'Merriweather Sans', sans-serif;
  padding: 0;
  border-top: 3px solid var(--accent-color);
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer-newsletter-dark {
  background: linear-gradient(135deg, rgba(107, 203, 148, 0.08) 0%, rgba(45, 52, 54, 0.3) 100%);
  border-top: 2px solid rgba(107, 203, 148, 0.3);
  padding: 70px 20px;
  position: relative;
}

.newsletter-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-box h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.newsletter-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-bottom: 35px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  padding: 14px 20px;
  flex: 1 1 280px;
  border: 2px solid rgba(107, 203, 148, 0.4);
  background: rgba(61, 66, 69, 0.5);
  color: #fff;
  border-radius: 50px;
  font-size: 15px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(61, 66, 69, 0.7);
  box-shadow: 0 0 0 4px rgba(107, 203, 148, 0.2);
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-dark) 100%);
  border: none;
  color: var(--dark-gray);
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(107, 203, 148, 0.4);
}

.newsletter-form button:hover {
  background: linear-gradient(135deg, var(--accent-color-dark) 0%, var(--accent-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 203, 148, 0.5);
}

.status {
  font-size: 14px;
  margin-top: 10px;
}

.footer-main {
  border-top: 1px solid rgba(107, 203, 148, 0.2);
  padding: 60px 20px 40px;
  background: rgba(0, 0, 0, 0.3);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-contact p {
  font-size: 15px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-contact strong {
  color: #ffffff;
  font-weight: 600;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
  border-radius: 2px;
}

.footer-company-info {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(107, 203, 148, 0.1);
}

.footer-company-info p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin: 8px 0;
}

.footer-company-info strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

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

.footer-column ul li {
  margin: 12px 0;
}

.footer-column ul a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 4px 0;
  position: relative;
}

.footer-column ul a::before {
  content: "→";
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--accent-color);
}

.footer-column ul a:hover {
  color: #ffffff;
  padding-left: 20px;
  transform: translateX(5px);
}

.footer-column ul a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-column p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin: 0;
}


/*--------------------------------------------------------------
# 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 svg {
  width: 24px;
  height: 24px;
  color: var(--contrast-color);
}

.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-modern {
  background: linear-gradient(180deg, #2d3436 0%, #1a1a1a 100%);
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
  font-family: 'Merriweather Sans', sans-serif;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

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

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float 20s infinite ease-in-out;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(107, 203, 148, 0.2), transparent);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 230, 207, 0.15), transparent);
  bottom: -150px;
  right: -150px;
  animation-delay: 7s;
}

.hero-orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(107, 203, 148, 0.1), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 14s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.hero-inner-modern {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content-modern {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(107, 203, 148, 0.15);
  border: 1px solid rgba(107, 203, 148, 0.3);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  width: fit-content;
}

.hero-badge .icon-badge {
  color: var(--accent-color);
}

.hero-title-modern {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--heading-color);
  margin: 0;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description-modern {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(232, 232, 232, 0.9);
  max-width: 600px;
  margin: 0;
}

.hero-cta-modern {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary-modern {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-dark) 100%);
  color: var(--dark-gray);
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(107, 203, 148, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(107, 203, 148, 0.4);
}

.btn-primary-modern .icon-arrow {
  transition: transform 0.3s ease;
}

.btn-primary-modern:hover .icon-arrow {
  transform: translateX(4px);
}

.btn-secondary-modern {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: rgba(107, 203, 148, 0.1);
  border: 2px solid rgba(107, 203, 148, 0.3);
  color: var(--accent-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary-modern:hover {
  background: rgba(107, 203, 148, 0.2);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(108, 92, 231, 0.1);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: rgba(232, 232, 232, 0.7);
  font-weight: 500;
}

.hero-visual-modern {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  height: 500px;
}

.hero-card {
  background: rgba(61, 66, 69, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(107, 203, 148, 0.2);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(107, 203, 148, 0.3);
  border-color: rgba(107, 203, 148, 0.4);
}

.hero-card-1 {
  grid-column: 1;
  grid-row: 1;
}

.hero-card-2 {
  grid-column: 2;
  grid-row: 1;
  margin-top: 40px;
}

.hero-card-3 {
  grid-column: 1 / -1;
  grid-row: 2;
}

.hero-card .icon-feature {
  color: var(--accent-color);
  width: 48px;
  height: 48px;
}

.hero-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

@media (max-width: 992px) {
  .hero-inner-modern {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-title-modern {
    font-size: 48px;
  }

  .hero-cta-modern {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual-modern {
    height: auto;
  }
}

@media (max-width: 768px) {
  .hero-modern {
    padding: 80px 20px;
    min-height: auto;
  }

  .hero-title-modern {
    font-size: 36px;
  }

  .hero-description-modern {
    font-size: 18px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-section-dark {
  background: #0d0d12;
  padding: 80px 20px;
  color: #d1cde8;
}

.about-dark-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.about-dark-content {
  flex: 1 1 500px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #9e85ff;
}

.section-description {
  font-size: 18px;
  margin-bottom: 40px;
  color: #bcb4dd;
  line-height: 1.6;
}

.about-feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.about-box {
  border: 1px solid rgba(132, 94, 247, 0.3);
  background: rgba(60, 50, 100, 0.2);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.feature-icon {
  font-size: 28px;
  color: #b387ff;
}

.feature-info h4 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #c3b5ff;
}

.feature-info p {
  margin: 0;
  color: #bcb4dd;
  font-size: 15px;
  line-height: 1.5;
}

.btn-about-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #542bbd, #8e44ec);
  color: #fff;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-about-dark:hover {
  background: linear-gradient(135deg, #3700b3, #7c4dff);
  transform: translateY(-2px);
}

.arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.btn-about-dark:hover .arrow {
  transform: translateX(5px);
}

.about-dark-image {
  position: relative;
  flex: 1 1 400px;
  max-width: 500px;
}

.about-dark-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
}

.image-background-circle {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

@media (max-width: 768px) {
  .about-dark-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .about-dark-image {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features-modern {
  background: linear-gradient(180deg, #3d4245 0%, #2d3436 100%);
  padding: 120px 20px;
  font-family: "Merriweather Sans", sans-serif;
  position: relative;
  overflow: hidden;
}

.features-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107, 203, 148, 0.4), transparent);
}

.features-header-modern {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.features-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(107, 203, 148, 0.15);
  border: 1px solid rgba(107, 203, 148, 0.3);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 24px;
}

.features-badge .icon-sparkle {
  color: var(--accent-color);
}

.features-title-modern {
  font-size: 48px;
  font-weight: 800;
  color: var(--heading-color);
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.features-subtitle-modern {
  font-size: 20px;
  color: rgba(232, 232, 232, 0.8);
  line-height: 1.6;
  margin: 0;
}

.features-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.feature-card-modern {
  background: #3d4245;
  border: 1px solid rgba(107, 203, 148, 0.2);
  border-radius: 24px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-color-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(107, 203, 148, 0.25);
  border-color: rgba(107, 203, 148, 0.4);
}

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

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(107, 203, 148, 0.15), rgba(168, 230, 207, 0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.feature-card-modern:hover .feature-icon-wrapper {
  background: linear-gradient(135deg, rgba(107, 203, 148, 0.25), rgba(168, 230, 207, 0.2));
  transform: scale(1.1) rotate(5deg);
}

.feature-icon-svg {
  color: var(--accent-color);
  width: 48px;
  height: 48px;
}

.feature-card-modern h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.3;
}

.feature-card-modern p {
  font-size: 16px;
  color: rgba(232, 232, 232, 0.8);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .features-modern {
    padding: 80px 20px;
  }

  .features-header-modern {
    margin-bottom: 60px;
  }

  .features-title-modern {
    font-size: 36px;
  }

  .features-subtitle-modern {
    font-size: 18px;
  }

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

  .feature-card-modern {
    padding: 32px 24px;
  }
}

/*--------------------------------------------------------------
# Feature Details Section
--------------------------------------------------------------*/

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

.gallery .swiper-wrapper {
  height: 400px;
}

.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 {
  padding: 100px 20px;
  background: linear-gradient(180deg, #1a1a1a 0%, #2d3436 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107, 203, 148, 0.4), transparent);
}

.testimonials .section-title {
  margin-bottom: 60px;
}

.testimonials .section-title h2 {
  color: var(--heading-color);
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
}

.testimonials .section-title p {
  color: rgba(232, 232, 232, 0.8);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.testimonials .testimonial-wrap {
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.testimonials .testimonial-item {
  background: linear-gradient(135deg, #3d4245 0%, #2d3436 100%);
  border-radius: 24px;
  border: 1px solid rgba(107, 203, 148, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  padding: 40px 32px;
  margin: 0 12px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--default-color);
}

.testimonials .testimonial-item::before {
  content: """;
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 60px;
  color: rgba(107, 203, 148, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonials .testimonial-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(107, 203, 148, 0.3);
  border-color: rgba(107, 203, 148, 0.4);
}

.testimonials .testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid var(--accent-color);
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(107, 203, 148, 0.3);
  transition: all 0.3s ease;
}

.testimonials .testimonial-item:hover .testimonial-img {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(107, 203, 148, 0.4);
}

.testimonials .testimonial-item h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: var(--accent-color);
}

.testimonials .testimonial-item h4 {
  font-size: 15px;
  font-weight: 500;
  color: rgba(232, 232, 232, 0.7);
  margin: 0 0 20px 0;
}

.testimonials .testimonial-item .stars {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.testimonials .testimonial-item .stars svg {
  width: 22px;
  height: 22px;
  color: var(--accent-color);
  fill: var(--accent-color);
}

.testimonials .testimonial-item p {
  font-size: 16px;
  line-height: 1.8;
  font-style: italic;
  color: rgba(232, 232, 232, 0.9);
  margin: 0;
  position: relative;
  z-index: 1;
}

.testimonials .swiper-pagination {
  margin-top: 40px;
  text-align: center;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(107, 203, 148, 0.4);
  opacity: 0.5;
  margin: 0 6px;
  transition: all 0.3s;
  border-radius: 50%;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--accent-color);
  transform: scale(1.2);
}

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

  .testimonials .testimonial-item {
    padding: 24px;
    margin: 0 8px;
  }

  .testimonials .testimonial-img {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
  }
}

/*--------------------------------------------------------------
# How It Works Section
--------------------------------------------------------------*/
.how-it-works {
  padding: 100px 20px;
  background: linear-gradient(180deg, #2d3436 0%, #3d4245 100%);
  position: relative;
}

.how-it-works::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107, 203, 148, 0.4), transparent);
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.how-it-works-item {
  background: linear-gradient(135deg, #3d4245 0%, #2d3436 100%);
  border: 1px solid rgba(107, 203, 148, 0.2);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.how-it-works-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(107, 203, 148, 0.3);
  border-color: rgba(107, 203, 148, 0.4);
}

.how-it-works-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--dark-gray);
  box-shadow: 0 4px 16px rgba(107, 203, 148, 0.4);
}

.how-it-works-icon {
  width: 80px;
  height: 80px;
  margin: 20px auto 24px;
  background: rgba(107, 203, 148, 0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.how-it-works-item:hover .how-it-works-icon {
  background: rgba(107, 203, 148, 0.25);
  transform: scale(1.1) rotate(5deg);
}

.how-it-works-item h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.how-it-works-item p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(232, 232, 232, 0.8);
  margin: 0;
}

@media (max-width: 768px) {
  .how-it-works {
    padding: 60px 20px;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/*--------------------------------------------------------------
# Benefits Section
--------------------------------------------------------------*/
.benefits {
  padding: 100px 20px;
  background: linear-gradient(180deg, #1a1a1a 0%, #2d3436 100%);
  position: relative;
}

.benefits::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107, 203, 148, 0.4), transparent);
}

.benefits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 60px auto 0;
  align-items: start;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.benefit-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: rgba(107, 203, 148, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
  background: rgba(107, 203, 148, 0.25);
  transform: scale(1.1);
}

.benefit-text h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.benefit-text p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(232, 232, 232, 0.8);
  margin: 0;
}

.benefits-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stat-box {
  background: linear-gradient(135deg, #3d4245 0%, #2d3436 100%);
  border: 1px solid rgba(107, 203, 148, 0.2);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(107, 203, 148, 0.25);
  border-color: rgba(107, 203, 148, 0.4);
}

.stat-value {
  font-size: 42px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-desc {
  font-size: 15px;
  color: rgba(232, 232, 232, 0.8);
  font-weight: 500;
}

@media (max-width: 968px) {
  .benefits-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefits-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .benefits {
    padding: 60px 20px;
  }

  .benefits-stats {
    grid-template-columns: 1fr;
  }
}



/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing.section {
  background: linear-gradient(180deg, #3d4245 0%, #2d3436 100%);
  color: var(--default-color);
  padding: 100px 20px;
  font-family: 'Merriweather Sans', sans-serif;
  position: relative;
}

.pricing.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107, 203, 148, 0.4), transparent);
}

.pricing .section-title h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--heading-color);
  text-align: center;
}

.pricing .section-title p {
  font-size: 1.25rem;
  color: rgba(232, 232, 232, 0.8);
  max-width: 600px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.pricing .pricing-item {
  background: linear-gradient(135deg, #3d4245 0%, #2d3436 100%);
  border: 2px solid rgba(107, 203, 148, 0.2);
  border-radius: 24px;
  padding: 50px 35px;
  height: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing .pricing-item:hover {
  box-shadow: 0 16px 48px rgba(107, 203, 148, 0.3);
  border-color: rgba(107, 203, 148, 0.4);
  transform: translateY(-10px);
}

.pricing h3 {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  text-align: center;
}

.pricing h4 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-color);
  text-align: center;
  margin-bottom: 30px;
  font-family: var(--heading-font);
}

.pricing h4 sup {
  font-size: 1.8rem;
  vertical-align: top;
}

.pricing ul {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  color: rgba(232, 232, 232, 0.9);
  font-size: 1.1rem;
  line-height: 1.5;
  border-top: 2px solid rgba(107, 203, 148, 0.3);
  padding-top: 20px;
  transition: border-color 0.3s ease;
}

.pricing ul li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgba(107, 203, 148, 0.2);
  transition: border-color 0.3s ease;
}

.pricing ul li:last-child {
  border-bottom: none;
}

.pricing ul li i {
  font-size: 22px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.pricing ul li.na {
  opacity: 0.5;
}

.pricing ul li.na i {
  color: rgba(107, 203, 148, 0.4);
}

.pricing ul li.na span {
  text-decoration: line-through;
  color: rgba(232, 232, 232, 0.5);
}

.pricing .buy-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 14px 0;
  font-size: 1.2rem;
  font-weight: 700;
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  border-radius: 40px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

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

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

.pricing .featured .pricing-item {
  background: var(--accent-color);
  border-color: var(--contrast-color);
  color: var(--contrast-color);
  box-shadow: 0 0 35px var(--accent-color);
  transform: scale(1.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pricing .featured .pricing-item:hover {
  box-shadow: 0 0 50px var(--accent-color);
  transform: scale(1.1);
}

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

.pricing .featured .buy-btn {
  background: var(--dark-gray);
  color: var(--accent-color);
  border-color: var(--dark-gray);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.pricing .featured .buy-btn:hover {
  background: rgba(26, 26, 26, 0.9);
  color: var(--accent-color);
}

/* Responsive */
@media (max-width: 991px) {
  .pricing .pricing-item {
    padding: 40px 30px;
  }

  .pricing h4 {
    font-size: 2.8rem;
  }
}

@media (max-width: 576px) {
  .pricing .pricing-item {
    padding: 30px 20px;
  }

  .pricing h4 {
    font-size: 2.2rem;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq.section {
  background: linear-gradient(180deg, #2d3436 0%, #1a1a1a 100%);
  color: var(--default-color);
  padding: 100px 20px;
  font-family: 'Merriweather Sans', sans-serif;
  position: relative;
}

.faq.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107, 203, 148, 0.4), transparent);
}

.faq .section-title h2 {
  color: var(--accent-color);
  font-weight: 800;
  font-size: 2.75rem;
  margin-bottom: 10px;
}

.faq .section-title h2 {
  color: var(--heading-color);
}

.faq .section-title p {
  color: rgba(232, 232, 232, 0.8);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 40px auto;
  text-align: center;
}

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

.faq-item {
  background: linear-gradient(135deg, #3d4245 0%, #2d3436 100%);
  border: 2px solid rgba(107, 203, 148, 0.2);
  border-radius: 16px;
  padding: 24px 24px 16px 24px;
  margin-bottom: 16px;
  position: relative;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  color: rgba(232, 232, 232, 0.9);
}

.faq-item:hover {
  box-shadow: 0 6px 24px rgba(107, 203, 148, 0.25);
  border-color: rgba(107, 203, 148, 0.4);
  cursor: pointer;
}

.faq-icon {
  font-size: 22px;
  color: var(--accent-color);
  margin-right: 12px;
  vertical-align: middle;
  flex-shrink: 0;
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  padding-left: 36px;
  position: relative;
  cursor: pointer;
  transition: color 0.3s ease;
  color: var(--accent-color);
  display: flex;
  align-items: center;
}

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

.faq-toggle {
  position: absolute;
  right: 24px;
  top: 28px;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
  color: var(--accent-color);
}

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

.faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-left: 36px;
  padding-top: 0;
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(232, 232, 232, 0.9);
  transition: max-height 0.5s ease, opacity 0.4s ease, padding-top 0.3s ease;
}

.faq-content p {
  margin: 0 0 12px 0;
}

.faq-content p:last-child {
  margin-bottom: 0;
}

.faq-item.faq-active {
  background: linear-gradient(135deg, rgba(107, 203, 148, 0.2) 0%, rgba(107, 203, 148, 0.1) 100%);
  border-color: rgba(107, 203, 148, 0.5);
  box-shadow: 0 8px 24px rgba(107, 203, 148, 0.3);
}

.faq-item.faq-active h3,
.faq-item.faq-active .faq-icon {
  color: var(--accent-color);
}

.faq-item.faq-active .faq-content {
  max-height: 2000px;
  opacity: 1;
  padding-top: 16px;
  color: rgba(232, 232, 232, 0.9);
}

.faq-item.faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

@media (max-width: 576px) {
  .faq-item {
    padding: 20px 16px 14px 16px;
  }

  .faq-toggle {
    top: 24px;
    right: 16px;
  }

  .faq-item h3 {
    font-size: 16px;
    padding-left: 32px;
  }

  .faq-content {
    padding-left: 32px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
:root {
  --contact-bg: #0b0e1a;
  --contact-card: rgba(255, 255, 255, 0.04);
  --contact-border: rgba(132, 94, 247, 0.3);
  --contact-text: #cfcaf5;
  --contact-accent: #7a5fff;
  --contact-white: #fff;
}

.contact-modern {
  background-color: var(--contact-bg);
  color: var(--contact-text);
  padding: 80px 20px;
  font-family: 'Merriweather Sans', sans-serif;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--contact-white);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-top: 40px;
}

.contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card {
  background-color: var(--contact-card);
  border: 1px solid var(--contact-border);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  width: 100%;
}

.info-icon i {
  font-size: 2.5rem;
  color: var(--contact-accent);
  margin-bottom: 15px;
}

.contact-form {
  width: 100%;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.contact-form-group {
  margin-bottom: 24px;
}

.contact-form-group label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 14px 20px;
  background: rgba(61, 66, 69, 0.5);
  border: 2px solid rgba(107, 203, 148, 0.2);
  border-radius: 12px;
  font-size: 16px;
  color: var(--default-color);
  font-family: 'Merriweather Sans', sans-serif;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(61, 66, 69, 0.7);
  box-shadow: 0 0 0 4px rgba(107, 203, 148, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form input.is-invalid,
.contact-form textarea.is-invalid {
  border-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
}

.contact-form input.is-valid,
.contact-form textarea.is-valid {
  border-color: var(--accent-color);
  background: rgba(107, 203, 148, 0.1);
}

.invalid-feedback {
  display: none;
  color: #ff6b6b;
  font-size: 14px;
  margin-top: 6px;
  font-weight: 500;
}

.contact-form input.is-invalid ~ .invalid-feedback,
.contact-form textarea.is-invalid ~ .invalid-feedback,
.contact-form input:invalid:not(:placeholder-shown) ~ .invalid-feedback,
.contact-form textarea:invalid:not(:placeholder-shown) ~ .invalid-feedback {
  display: block;
}

.contact-form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-dark) 100%);
  color: var(--dark-gray);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(107, 203, 148, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Merriweather Sans', sans-serif;
}

.contact-form-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(107, 203, 148, 0.4);
}

.contact-form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-status {
  margin-top: 20px;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}

.form-status .loading {
  color: var(--accent-color);
}

.form-status .error-message {
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 107, 107, 0.3);
}

.form-status .sent-message {
  color: var(--accent-color);
  background: rgba(107, 203, 148, 0.1);
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(107, 203, 148, 0.3);
}

@media (max-width: 768px) {
  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-actions {
  text-align: right;
}

.btn-submit {
  background-color: var(--contact-accent);
  color: #fff;
  padding: 12px 32px;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #674ff6;
}

.form-status {
  font-size: 0.95rem;
  color: var(--contact-text);
  text-align: center;
}

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

  .form-row {
    flex-direction: column;
  }
}


/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

#cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #3d4245 0%, #2d3436 100%);
  border-top: 2px solid rgba(107, 203, 148, 0.3);
  padding: 24px 20px;
  font-family: "Merriweather Sans", sans-serif;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
  z-index: 10000;
  display: none;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

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

.cookie-popup-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(107, 203, 148, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  flex-shrink: 0;
}

.cookie-popup-text {
  flex: 1;
  min-width: 300px;
}

.cookie-popup-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 8px 0;
}

.cookie-popup-text p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(232, 232, 232, 0.9);
  margin: 0;
}

.cookie-popup-text a {
  color: var(--accent-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-popup-text a:hover {
  color: var(--accent-color-light);
}

.cookie-popup-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn-accept,
.cookie-btn-settings {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Merriweather Sans", sans-serif;
  border: none;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-dark) 100%);
  color: var(--dark-gray);
  box-shadow: 0 4px 12px rgba(107, 203, 148, 0.3);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(107, 203, 148, 0.4);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid rgba(107, 203, 148, 0.3);
}

.cookie-btn-settings:hover {
  background: rgba(107, 203, 148, 0.1);
  border-color: var(--accent-color);
}

@media (max-width: 768px) {
  #cookie-popup {
    padding: 20px 16px;
  }

  .cookie-popup-content {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cookie-popup-icon {
    margin: 0 auto;
  }

  .cookie-popup-text {
    text-align: center;
    min-width: auto;
  }

  .cookie-popup-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn-accept,
  .cookie-btn-settings {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# About Page Styles
--------------------------------------------------------------*/
.about-hero {
  padding: 120px 20px 80px;
  background: linear-gradient(180deg, #1a1a1a 0%, #2d3436 100%);
  text-align: center;
}

.about-hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-hero-content .lead {
  font-size: 22px;
  color: rgba(232, 232, 232, 0.9);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.about-mission {
  padding: 100px 20px;
  background: linear-gradient(180deg, #2d3436 0%, #3d4245 100%);
}

.about-mission h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 24px;
}

.about-mission p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(232, 232, 232, 0.9);
  margin-bottom: 20px;
}

.mission-stats {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  flex-wrap: wrap;
}

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

.mission-stats .stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 8px;
}

.mission-stats .stat-label {
  font-size: 16px;
  color: rgba(232, 232, 232, 0.8);
  font-weight: 500;
}

.mission-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.mission-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-methods {
  padding: 100px 20px;
  background: linear-gradient(180deg, #3d4245 0%, #2d3436 100%);
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.method-card {
  background: linear-gradient(135deg, #3d4245 0%, #2d3436 100%);
  border: 1px solid rgba(107, 203, 148, 0.2);
  border-radius: 24px;
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(107, 203, 148, 0.3);
  border-color: rgba(107, 203, 148, 0.4);
}

.method-icon {
  width: 80px;
  height: 80px;
  background: rgba(107, 203, 148, 0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  margin-bottom: 24px;
}

.method-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.method-card p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(232, 232, 232, 0.8);
  margin: 0;
}

.about-programs {
  padding: 100px 20px;
  background: linear-gradient(180deg, #1a1a1a 0%, #2d3436 100%);
}

.programs-table-wrapper {
  max-width: 1000px;
  margin: 60px auto 0;
  overflow-x: auto;
}

.programs-table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(135deg, #3d4245 0%, #2d3436 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.programs-table thead {
  background: rgba(107, 203, 148, 0.2);
}

.programs-table th {
  padding: 20px 24px;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  border-bottom: 2px solid rgba(107, 203, 148, 0.3);
}

.programs-table td {
  padding: 20px 24px;
  font-size: 16px;
  color: rgba(232, 232, 232, 0.9);
  border-bottom: 1px solid rgba(107, 203, 148, 0.1);
}

.programs-table tbody tr:hover {
  background: rgba(107, 203, 148, 0.1);
}

.programs-table tbody tr:last-child td {
  border-bottom: none;
}

.about-team {
  padding: 100px 20px;
  background: linear-gradient(180deg, #3d4245 0%, #2d3436 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.team-member {
  background: linear-gradient(135deg, #3d4245 0%, #2d3436 100%);
  border: 1px solid rgba(107, 203, 148, 0.2);
  border-radius: 24px;
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(107, 203, 148, 0.3);
  border-color: rgba(107, 203, 148, 0.4);
}

.member-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.member-role {
  font-size: 16px;
  color: rgba(232, 232, 232, 0.7);
  font-weight: 600;
  margin-bottom: 16px;
}

.member-bio {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(232, 232, 232, 0.8);
  margin: 0;
}

.about-cta {
  padding: 100px 20px;
  background: linear-gradient(180deg, #1a1a1a 0%, #2d3436 100%);
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, #3d4245 0%, #2d3436 100%);
  border: 1px solid rgba(107, 203, 148, 0.3);
  border-radius: 24px;
  padding: 60px 40px;
}

.cta-box h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.cta-box p {
  font-size: 20px;
  color: rgba(232, 232, 232, 0.9);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/*--------------------------------------------------------------
# Contact Page Styles
--------------------------------------------------------------*/
.contact-hero {
  padding: 120px 20px 80px;
  background: linear-gradient(180deg, #1a1a1a 0%, #2d3436 100%);
  text-align: center;
}

.contact-hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 24px;
  line-height: 1.2;
}

.contact-hero-content .lead {
  font-size: 22px;
  color: rgba(232, 232, 232, 0.9);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-form-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #2d3436 0%, #3d4245 100%);
}

.contact-form-wrapper {
  background: linear-gradient(135deg, #3d4245 0%, #2d3436 100%);
  border: 1px solid rgba(107, 203, 148, 0.2);
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 400;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--accent-color);
}

.checkbox-group a {
  color: var(--accent-color);
  text-decoration: underline;
}

.contact-info-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #3d4245 0%, #2d3436 100%);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.contact-info-card {
  background: linear-gradient(135deg, #3d4245 0%, #2d3436 100%);
  border: 1px solid rgba(107, 203, 148, 0.2);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(107, 203, 148, 0.3);
  border-color: rgba(107, 203, 148, 0.4);
}

.contact-info-card .info-icon {
  width: 80px;
  height: 80px;
  background: rgba(107, 203, 148, 0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  margin: 0 auto 24px;
}

.contact-info-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.contact-info-card p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(232, 232, 232, 0.9);
  margin-bottom: 8px;
}

.contact-info-card a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: var(--accent-color-light);
}

.info-note {
  font-size: 14px;
  color: rgba(232, 232, 232, 0.6);
  font-style: italic;
  margin-top: 8px;
}

.contact-faq {
  padding: 80px 20px;
  background: linear-gradient(180deg, #1a1a1a 0%, #2d3436 100%);
}

.faq-quick {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, #3d4245 0%, #2d3436 100%);
  border: 1px solid rgba(107, 203, 148, 0.2);
  border-radius: 24px;
  padding: 50px 40px;
}

.faq-quick h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.faq-quick p {
  font-size: 18px;
  color: rgba(232, 232, 232, 0.9);
  margin-bottom: 32px;
  line-height: 1.7;
}

/*--------------------------------------------------------------
# FAQ Page Styles
--------------------------------------------------------------*/
.faq-hero {
  padding: 120px 20px 80px;
  background: linear-gradient(180deg, #1a1a1a 0%, #2d3436 100%);
  text-align: center;
}

.faq-hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 24px;
  line-height: 1.2;
}

.faq-hero-content .lead {
  font-size: 22px;
  color: rgba(232, 232, 232, 0.9);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.faq-categories {
  padding: 40px 20px;
  background: linear-gradient(180deg, #2d3436 0%, #3d4245 100%);
  border-bottom: 1px solid rgba(107, 203, 148, 0.2);
}

.faq-nav {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-nav-btn {
  padding: 12px 24px;
  background: rgba(61, 66, 69, 0.5);
  border: 2px solid rgba(107, 203, 148, 0.2);
  border-radius: 50px;
  color: rgba(232, 232, 232, 0.9);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Merriweather Sans', sans-serif;
}

.faq-nav-btn:hover,
.faq-nav-btn.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--dark-gray);
  transform: translateY(-2px);
}

.faq-content ul,
.faq-content ol {
  margin: 16px 0;
  padding-left: 24px;
}

.faq-content li {
  margin-bottom: 8px;
  line-height: 1.7;
  color: rgba(232, 232, 232, 0.9);
}

.faq-content strong {
  color: var(--heading-color);
  font-weight: 600;
}

.faq-content a {
  color: var(--accent-color);
  text-decoration: underline;
}

.faq-item.faq-active .faq-content {
  color: rgba(232, 232, 232, 0.9);
}

.faq-item.faq-active .faq-content li,
.faq-item.faq-active .faq-content strong {
  color: rgba(232, 232, 232, 0.9);
}

.faq-item.faq-active .faq-content strong {
  color: var(--heading-color);
}

.faq-cta {
  padding: 100px 20px;
  background: linear-gradient(180deg, #3d4245 0%, #2d3436 100%);
}

.faq-cta-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, #3d4245 0%, #2d3436 100%);
  border: 1px solid rgba(107, 203, 148, 0.3);
  border-radius: 24px;
  padding: 60px 40px;
}

.faq-cta-box h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.faq-cta-box p {
  font-size: 18px;
  color: rgba(232, 232, 232, 0.9);
  margin-bottom: 32px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .about-hero-content h1,
  .contact-hero-content h1,
  .faq-hero-content h1 {
    font-size: 36px;
  }

  .about-hero-content .lead,
  .contact-hero-content .lead,
  .faq-hero-content .lead {
    font-size: 18px;
  }

  .mission-stats {
    gap: 24px;
  }

  .mission-stats .stat-number {
    font-size: 36px;
  }

  .programs-table-wrapper {
    overflow-x: scroll;
  }

  .programs-table {
    min-width: 600px;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .cta-box,
  .faq-cta-box {
    padding: 40px 24px;
  }
}

/*--------------------------------------------------------------
# Policy Pages Styles (Cookie Policy, Privacy Policy, Terms)
--------------------------------------------------------------*/
.policy-hero {
  padding: 120px 20px 80px;
  background: linear-gradient(180deg, #1a1a1a 0%, #2d3436 100%);
  text-align: center;
}

.policy-hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 16px;
  line-height: 1.2;
}

.policy-hero-content .lead {
  font-size: 18px;
  color: rgba(232, 232, 232, 0.7);
  margin-bottom: 12px;
  font-weight: 500;
}

.policy-hero-content .subtitle {
  font-size: 20px;
  color: rgba(232, 232, 232, 0.9);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.policy-content {
  padding: 80px 20px;
  background: linear-gradient(180deg, #2d3436 0%, #3d4245 100%);
}

.policy-content-wrapper {
  background: linear-gradient(135deg, #3d4245 0%, #2d3436 100%);
  border: 1px solid rgba(107, 203, 148, 0.2);
  border-radius: 24px;
  padding: 60px 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.policy-section {
  margin-bottom: 48px;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.policy-section h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-top: 24px;
  margin-bottom: 12px;
}

.policy-section p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(232, 232, 232, 0.9);
  margin-bottom: 16px;
}

.policy-section ul,
.policy-section ol {
  margin: 16px 0;
  padding-left: 24px;
}

.policy-section li {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(232, 232, 232, 0.9);
  margin-bottom: 8px;
}

.policy-section a {
  color: var(--accent-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.policy-section a:hover {
  color: var(--accent-color-light);
}

.cookie-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.cookie-type-card {
  background: rgba(61, 66, 69, 0.5);
  border: 1px solid rgba(107, 203, 148, 0.2);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.cookie-type-card:hover {
  border-color: rgba(107, 203, 148, 0.4);
  box-shadow: 0 8px 24px rgba(107, 203, 148, 0.2);
}

.cookie-type-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 12px;
  margin-top: 0;
}

.cookie-type-card p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.cookie-type-card strong {
  color: var(--heading-color);
  font-weight: 600;
}

/*--------------------------------------------------------------
# Thanks Page Styles
--------------------------------------------------------------*/
.thanks-hero {
  padding: 120px 20px 100px;
  background: linear-gradient(180deg, #1a1a1a 0%, #2d3436 100%);
  text-align: center;
}

.thanks-content {
  max-width: 700px;
  margin: 0 auto;
}

.thanks-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 32px;
  background: rgba(107, 203, 148, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thanks-content h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.thanks-content .lead {
  font-size: 20px;
  color: rgba(232, 232, 232, 0.9);
  line-height: 1.7;
}

.thanks-info {
  padding: 80px 20px;
  background: linear-gradient(180deg, #2d3436 0%, #3d4245 100%);
}

.thanks-info-wrapper h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 40px;
  text-align: center;
}

.thanks-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.thanks-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: linear-gradient(135deg, #3d4245 0%, #2d3436 100%);
  border: 1px solid rgba(107, 203, 148, 0.2);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
}

.thanks-step:hover {
  border-color: rgba(107, 203, 148, 0.4);
  box-shadow: 0 8px 24px rgba(107, 203, 148, 0.2);
  transform: translateY(-4px);
}

.step-number {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: var(--dark-gray);
  box-shadow: 0 4px 16px rgba(107, 203, 148, 0.3);
}

.step-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
  margin-top: 0;
}

.step-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(232, 232, 232, 0.9);
  margin: 0;
}

.thanks-cta {
  padding: 100px 20px;
  background: linear-gradient(180deg, #3d4245 0%, #2d3436 100%);
}

.thanks-cta-wrapper {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, #3d4245 0%, #2d3436 100%);
  border: 1px solid rgba(107, 203, 148, 0.3);
  border-radius: 24px;
  padding: 60px 40px;
}

.thanks-cta-wrapper h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.thanks-cta-wrapper p {
  font-size: 18px;
  color: rgba(232, 232, 232, 0.9);
  margin-bottom: 32px;
  line-height: 1.7;
}

.thanks-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .policy-hero-content h1 {
    font-size: 36px;
  }

  .policy-hero-content .subtitle {
    font-size: 18px;
  }

  .policy-content-wrapper {
    padding: 40px 24px;
  }

  .policy-section h2 {
    font-size: 26px;
  }

  .policy-section h3 {
    font-size: 20px;
  }

  .cookie-types {
    grid-template-columns: 1fr;
  }

  .thanks-content h1 {
    font-size: 32px;
  }

  .thanks-content .lead {
    font-size: 18px;
  }

  .thanks-step {
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    margin: 0 auto;
  }

  .thanks-cta-wrapper {
    padding: 40px 24px;
  }

  .thanks-cta-buttons {
    flex-direction: column;
  }

  .thanks-cta-buttons a {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Payment Info Section Styles
--------------------------------------------------------------*/
.payment-info-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #2d3436 0%, #3d4245 100%);
}

.payment-info-header {
  text-align: center;
  margin-bottom: 60px;
}

.payment-info-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.payment-info-header .subtitle {
  font-size: 20px;
  color: rgba(232, 232, 232, 0.9);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.payment-method-card {
  background: linear-gradient(135deg, #3d4245 0%, #2d3436 100%);
  border: 1px solid rgba(107, 203, 148, 0.2);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.payment-method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(107, 203, 148, 0.3);
  border-color: rgba(107, 203, 148, 0.4);
}

.payment-icon {
  width: 80px;
  height: 80px;
  background: rgba(107, 203, 148, 0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.payment-method-card:hover .payment-icon {
  background: rgba(107, 203, 148, 0.25);
  transform: scale(1.1);
}

.payment-method-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.payment-method-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(232, 232, 232, 0.8);
  margin: 0;
}

.payment-security-box {
  background: linear-gradient(135deg, rgba(107, 203, 148, 0.1) 0%, rgba(107, 203, 148, 0.05) 100%);
  border: 2px solid rgba(107, 203, 148, 0.3);
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 60px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.security-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  background: rgba(107, 203, 148, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
}

.security-content h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.security-content p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(232, 232, 232, 0.9);
  margin-bottom: 20px;
}

.security-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.security-content li {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(232, 232, 232, 0.9);
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
}

.security-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.payment-terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.payment-term-card {
  background: linear-gradient(135deg, #3d4245 0%, #2d3436 100%);
  border: 1px solid rgba(107, 203, 148, 0.2);
  border-radius: 20px;
  padding: 28px 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.payment-term-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(107, 203, 148, 0.25);
  border-color: rgba(107, 203, 148, 0.4);
}

.term-icon {
  width: 60px;
  height: 60px;
  background: rgba(107, 203, 148, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.payment-term-card:hover .term-icon {
  background: rgba(107, 203, 148, 0.25);
  transform: rotate(5deg);
}

.payment-term-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.payment-term-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(232, 232, 232, 0.8);
  margin: 0;
}

.payment-contact-box {
  background: linear-gradient(135deg, #3d4245 0%, #2d3436 100%);
  border: 2px solid rgba(107, 203, 148, 0.3);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
}

.payment-contact-box h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.payment-contact-box > p {
  font-size: 18px;
  color: rgba(232, 232, 232, 0.9);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(61, 66, 69, 0.5);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(107, 203, 148, 0.1);
  transform: translateX(4px);
}

.contact-item svg {
  color: var(--accent-color);
  flex-shrink: 0;
}

.contact-item span {
  font-size: 16px;
  color: rgba(232, 232, 232, 0.9);
  font-weight: 500;
}

.btn-contact-payment {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-dark) 100%);
  color: var(--dark-gray);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(107, 203, 148, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-contact-payment:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(107, 203, 148, 0.4);
  color: var(--dark-gray);
}

@media (max-width: 768px) {
  .payment-info-header h2 {
    font-size: 32px;
  }

  .payment-info-header .subtitle {
    font-size: 18px;
  }

  .payment-methods-grid {
    grid-template-columns: 1fr;
  }

  .payment-security-box {
    flex-direction: column;
    padding: 32px 24px;
  }

  .security-icon {
    margin: 0 auto;
  }

  .payment-terms-grid {
    grid-template-columns: 1fr;
  }

  .payment-contact-box {
    padding: 40px 24px;
  }

  .contact-details {
    gap: 12px;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}