/*--------------------------------------------------------------
# Neon Chips (Hero replacements)
--------------------------------------------------------------*/
.neon-chips {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.neon-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--accent-color);
  color: var(--contrast-color);
  box-shadow: var(--shadow-glow);
  backdrop-filter: blur(6px);
  font-weight: 600;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Testimonials Slider (Swiper)
--------------------------------------------------------------*/
.testimonials-section .swiper-container {
  padding: 10px 10px 50px 10px;
}

.testimonials-section .swiper-slide {
  height: auto;
}

.testimonial-card {
  background: var(--dark-surface);
  border: 1px solid var(--border-glow);
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), var(--shadow-glow);
}

.testimonial-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent-color);
  box-shadow: var(--shadow-glow);
  margin-bottom: 14px;
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonials-section .swiper-button-prev,
.testimonials-section .swiper-button-next {
  color: var(--accent-color);
  background: var(--dark-surface);
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  box-shadow: var(--shadow-glow);
  transition: all 0.3s ease;
}

.testimonials-section .swiper-button-prev:hover,
.testimonials-section .swiper-button-next:hover {
  background: var(--accent-color);
  color: var(--dark-surface);
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
}

.testimonials-section .swiper-button-prev::after,
.testimonials-section .swiper-button-next::after {
  font-size: 18px;
  font-weight: bold;
}

.testimonials-section .swiper-button-prev {
  left: 20px;
}

.testimonials-section .swiper-button-next {
  right: 20px;
}

.testimonials-section .swiper-pagination-bullet {
  background: var(--accent-color);
  opacity: 0.5;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.testimonials-section .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

.testimonials-section .swiper-pagination {
  bottom: 10px;
}
/* Fonts */
:root {
  --default-font: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Source Sans 3", sans-serif;
  --nav-font: "Source Sans 3", 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: #0a0a0a; /* deep black */
--default-color: #e0e0e0; /* light gray text */
--heading-color: #ffffff; /* white headings */
--accent-color: #00ff88; /* neon green accent */
--surface-color: #1a1a1a; /* dark cards/surfaces */
--contrast-color: #ffffff; /* white text on dark */
--bg-color: #111111; /* section gradients start */
--nav-color: #00ff88;
--nav-hover-color: #00cc6a;
--nav-mobile-background-color: #1a1a1a;
--nav-dropdown-background-color: #0a0a0a;
--nav-dropdown-color: #ffffff;
--nav-dropdown-hover-color: #00ff88;

/* Futuristic colors */
--neon-blue: #00bfff;
--neon-purple: #8a2be2;
--neon-cyan: #00ffff;
--neon-pink: #ff1493;
--dark-surface: #0d0d0d;
--border-glow: rgba(0, 255, 136, 0.3);
--shadow-glow: 0 0 20px rgba(0, 255, 136, 0.3);
--gradient-futuristic: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
}

/* Color Presets */

.light-background {
  --background-color: #1a1a1a;
  --surface-color: #0d0d0d;
  --default-color: #e0e0e0;
  --heading-color: #ffffff;
  --contrast-color: #ffffff;
}

.dark-background {
  --background-color: #0a0a0a;
  --default-color: #ffffff;
  --heading-color: #00ff88;
  --surface-color: #111111;
  --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;
  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(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid var(--border-glow);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

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

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 400;
}

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

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

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

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

  .header .navmenu {
    order: 3;
  }
}

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

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

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

  .navmenu li {
    position: relative;
  }

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

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

  .navmenu li a {
    border-bottom: 1px solid var(--accent-color);

    margin: 0 1rem;
  }

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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;

    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

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

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

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

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

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

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

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

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

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

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

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

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

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

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

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

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

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

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

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

  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.85);
    transition: 0.3s;
    z-index: 10002;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
    position: absolute;
    top: 80px;
    left: 16px;
    right: 16px;
    bottom: 16px;
    overflow: auto;
    z-index: 10002;
    background: var(--nav-mobile-background-color);
    border: 1px solid var(--border-glow, rgba(0,255,136,0.3));
    border-radius: 12px;
    padding: 16px 8px;
  }

  /* Raise header stacking context when mobile menu is active */
  .mobile-nav-active #header,
  .mobile-nav-active .header {
    z-index: 10001;
  }
}

/*--------------------------------------------------------------
# Global Footer - Futuristic
--------------------------------------------------------------*/
.footer {
  background: var(--gradient-futuristic);
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 191, 255, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer-top {
  padding: 80px 0 50px;
  position: relative;
  z-index: 2;
}

.footer-links h4 {
  color: var(--contrast-color);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

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

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

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links ul li a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-links ul li a::before {
  content: '▶';
  margin-right: 8px;
  font-size: 12px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover::before {
  opacity: 1;
}

.footer-about h3 {
  color: var(--contrast-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 30px;
}

.footer-contact h4,
.footer-contact h5 {
  color: var(--contrast-color);
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-contact .contact-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-contact .contact-info i {
  color: var(--accent-color);
  width: 20px;
}

.newsletter {
  margin-top: 30px;
}

.newsletter h5 {
  color: var(--contrast-color);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form .form-control {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--contrast-color);
  border-radius: 8px;
  padding: 10px 15px;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .btn {
  background: var(--accent-color);
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
  white-space: nowrap;
}

.newsletter-form .btn:hover {
  background: var(--neon-cyan);
  transform: translateY(-2px);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(233, 69, 96, 0.3);
}

.copyright {
  background: rgba(0, 0, 0, 0.2);
  padding: 25px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.copyright a {
  color: var(--accent-color);
  text-decoration: none;
}

.copyright a:hover {
  text-decoration: underline;
}
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

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

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

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  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;
  ;
}

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

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

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

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

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

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

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

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

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

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

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

.footer .footer-links ul a {
  display: inline-block;
  line-height: 1;
}

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

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

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

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

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

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

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

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  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;
  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;
  color: var(--heading-color);
}

.section-title p {
  margin-bottom: 0;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Hero Section - Futuristic
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-futuristic);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 191, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--background-color) 100%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--accent-color), rgba(233, 69, 96, 0.3));
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  right: 30%;
  animation-delay: 4s;
}

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

.hero-content {
  position: relative;
  z-index: 4;
  color: var(--contrast-color);
}

.hero-badge {
  display: inline-block;
  background: rgba(0, 255, 136, 0.1);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid var(--accent-color);
  box-shadow: var(--shadow-glow);
  animation: pulse-glow 2s ease-in-out infinite alternate;
}

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

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

.text-gradient {
  background: linear-gradient(45deg, var(--accent-color), var(--neon-cyan), var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.9);
}

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

.hero-buttons .btn {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
  background: linear-gradient(45deg, var(--accent-color), var(--neon-cyan));
  border: 1px solid var(--accent-color);
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

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

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

.hero-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 255, 136, 0.6);
}

.hero-buttons .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--contrast-color);
  background: transparent;
}

.hero-buttons .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--contrast-color);
  transform: translateY(-3px);
}

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

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

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

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

.image-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--heading-color);
  animation: float 4s ease-in-out infinite;
}

.card-1 {
  top: 20%;
  right: -20px;
  animation-delay: 0s;
}

.card-2 {
  bottom: 30%;
  left: -30px;
  animation-delay: 1s;
}

.card-3 {
  top: 60%;
  right: -10px;
  animation-delay: 2s;
}

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .floating-card {
    display: none;
  }
}
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: var(--heading-color);
}

.hero p {
  color: var(--default-color);
  margin: 5px 0 10px 0;
  font-size: 20px;
  font-weight: 400;
}

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# About Section - Futuristic
--------------------------------------------------------------*/
.about {
  background: var(--gradient-futuristic);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(0, 255, 136, 0.03) 50%, transparent 70%),
    linear-gradient(-45deg, transparent 30%, rgba(0, 191, 255, 0.03) 50%, transparent 70%);
  z-index: 1;
}



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

.about-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), var(--neon-cyan));
  color: var(--dark-surface);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-glow);
  border: 1px solid var(--accent-color);
}

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

.about-subtitle {
  font-size: 1.25rem;
  color: var(--default-color);
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.about-content h3 {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.about-content .lead {
  font-size: 1.2rem;
  color: var(--default-color);
  margin-bottom: 25px;
  line-height: 1.6;
  font-weight: 500;
}

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

.about-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

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

.about-stats .stat-item h4 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.about-stats .stat-item p {
  font-size: 14px;
  color: var(--default-color);
  margin: 0;
  font-weight: 500;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(233, 69, 96, 0.8), rgba(199, 54, 80, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-image:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
}

.overlay-content i {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.overlay-content span {
  font-size: 1.1rem;
  font-weight: 600;
}

.about-features {
  margin-top: 80px;
}

.about-features .feature-card {
  background: var(--dark-surface);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), var(--shadow-glow);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--border-glow);
  position: relative;
  overflow: hidden;
}

.about-features .feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--accent-color), var(--neon-cyan), var(--neon-blue));
  animation: gradient-flow 3s ease-in-out infinite;
}

@keyframes gradient-flow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.about-features .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 255, 136, 0.4);
  border-color: var(--accent-color);
}

.about-features .feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), var(--neon-cyan));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
  border: 1px solid var(--accent-color);
}

.about-features .feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.about-features .feature-icon i {
  font-size: 35px;
  color: white;
}

.about-features .feature-card h4 {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

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

@media (max-width: 768px) {
  .about-title {
    font-size: 2.5rem;
  }
  
  .about-stats {
    gap: 20px;
    justify-content: center;
  }
  
  .about-stats .stat-item h4 {
    font-size: 2rem;
  }
}
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
  color: var(--default-color);
}

.about h2,
.about h3,
.about p {
  color: var(--default-color) !important;
}

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

.about .read-more {
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.2px;
  padding: 12px 32px;
  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 - Futuristic
--------------------------------------------------------------*/
.features {
  background: var(--gradient-futuristic);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(0, 191, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.03) 0%, transparent 50%);
  z-index: 1;
}



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

.features-badge {
  display: inline-block;
  background: rgba(233, 69, 96, 0.2);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--accent-color);
}

.features-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.features-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.features .feature-card {
  background: var(--dark-surface);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), var(--shadow-glow);
  transition: all 0.3s ease;
  height: 100%;
  min-height: 400px;
  border: 1px solid var(--border-glow);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  perspective: 1000px;
}

.features .card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.features .feature-card:hover .card-inner {
  transform: rotateY(180deg);
}

.features .card-front,
.features .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 30px;
  box-sizing: border-box;
  overflow: hidden;
}

.features .card-back {
  transform: rotateY(180deg);
}

.features .card-back ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  text-align: left;
}

.features .card-back ul li {
  color: var(--default-color);
  margin: 8px 0;
  padding-left: 20px;
  position: relative;
  font-size: 14px;
}

.features .card-back ul li::before {
  content: "▶";
  color: var(--accent-color);
  position: absolute;
  left: 0;
  font-size: 12px;
}

.features .card-front h3,
.features .card-back h3 {
  margin: 15px 0 10px 0;
  font-size: 18px;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.features .card-front p,
.features .card-back p {
  margin: 0 0 15px 0;
  font-size: 14px;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-height: 60px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.features .card-front .feature-link,
.features .card-back .feature-link {
  margin-top: auto;
  padding-top: 10px;
}

.features .card-back ul {
  margin: 10px 0;
  text-align: left;
  max-height: 100px;
  overflow-y: auto;
  padding-right: 5px;
}

.features .card-back ul::-webkit-scrollbar {
  width: 4px;
}

.features .card-back ul::-webkit-scrollbar-track {
  background: rgba(0, 255, 136, 0.1);
  border-radius: 2px;
}

.features .card-back ul::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 2px;
}

.features .card-back ul::-webkit-scrollbar-thumb:hover {
  background: var(--neon-cyan);
}

/* Адаптивная высота для мобильных устройств */
@media (max-width: 768px) {
  .features .feature-card {
    min-height: 350px;
  }
}

@media (max-width: 576px) {
  .features .feature-card {
    min-height: 320px;
  }
  
  .features .card-inner {
    padding: 30px 20px;
  }
}

.features .feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--accent-color), var(--neon-cyan), var(--neon-blue));
  animation: gradient-flow 3s ease-in-out infinite;
}

.features .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 255, 136, 0.4);
  border-color: var(--accent-color);
}

.features .feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), var(--neon-cyan));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
  border: 1px solid var(--accent-color);
}

.features .feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.features .feature-icon i {
  font-size: 35px;
  color: white;
}

.features .feature-card h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.features .feature-card p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 25px;
}

.feature-link {
  margin-top: auto;
}

.feature-link a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.feature-link a:hover {
  color: #c73650;
  transform: translateX(5px);
}

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

.feature-link a:hover i {
  transform: translateX(3px);
}

.features-cta {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.features-cta h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.features-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

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

.cta-buttons .btn {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
  background: linear-gradient(45deg, var(--accent-color), var(--neon-cyan));
  border: 1px solid var(--accent-color);
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

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

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

.cta-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 255, 136, 0.6);
  background: linear-gradient(45deg, var(--neon-cyan), var(--neon-blue));
}

.cta-buttons .btn-outline-primary {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
}

.cta-buttons .btn-outline-primary:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .features-title {
    font-size: 2.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}
#features {
  background-color: var(--bg-color);
  color: var(--contrast-color);
}



.features .icon-box {
  display: flex;
  align-items: center;
  width: 30%;
  margin: 1rem;
}

.features .icon-box {
  background: var(--bg-primary);
  border: 2px solid #f0f0f0;
  border-radius: 1rem;
  padding: 0.5rem 0;
}

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

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

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

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

.features .icon-box p {
  font-size: 15px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Feature Details Section
--------------------------------------------------------------*/
.feature-details .features-item {
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-details h3,
.feature-details p {
  color: var(--contrast-color) !important;
}



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

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

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

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

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

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

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

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

.feature-item-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 5px 15px;
  border: 1px solid #e0e0e0;;
  border-radius: 1rem;
  background-color: var(--background-color);
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 40px;
  color: var(--accent-color);
  margin-right: 15px;
}

.feature-text {
  font-size: 16px;
  color: var(--default-color);
  line-height: 1.5;
}

.feature-item strong {
  font-size: 18px;
  color: var(--accent-color);
}

.feature-item {
  color: var(--default-color);
}

.feature-item .feature-text {
  color: var(--default-color) !important;
}


/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

/* Styles pour le bloc Témoignages */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--bg-color);
  position: relative;
  color: var(--contrast-color);
}

.testimonials-section h2,
.testimonials-section p {
  color: var(--contrast-color) !important;
}


.testimonial-card {
  background-color: var(--surface-color);
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
  color: var(--default-color);
}

.testimonial-card h3,
.testimonial-card p {
  color: var(--default-color) !important;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--accent-color);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  left: 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author-img {
  width: 60px;
  height: 60px;
  overflow: hidden;
  margin-right: 15px;
  border: 2px solid var(--accent-color);
  border-radius: 1rem;
}

.testimonial-author-name {
  font-weight: 600;
  margin-bottom: 3px;
}

.testimonial-author-title {
  font-size: 0.9rem;
  opacity: 0.7;
}

.testimonial-rating {
  display: flex;
  margin-bottom: 15px;
}

.rating-star {
  color: var(--accent-color);
  margin-right: 3px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {

  .pricing-section,
  .testimonials-section {
    padding: 70px 0;
  }

  .pricing-card.featured {
    transform: scale(1);
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 767.98px) {
  .pricing-price {
    font-size: 2rem;
  }

  .pricing-title {
    font-size: 1.3rem;
  }

  .testimonial-card {
    margin-bottom: 30px;
  }
}

/* Ensure testimonials mobile colors match desktop */
@media (max-width: 991.98px) {
  .testimonials-section {
    background-color: var(--bg-color) !important;
    color: var(--contrast-color) !important;
  }
  .testimonials-section h2,
  .testimonials-section p {
    color: var(--contrast-color) !important;
  }
  .testimonial-card {
    background: var(--dark-surface) !important;
    color: var(--default-color) !important;
    border: 1px solid var(--border-glow) !important;
  }
  .testimonial-text,
  .testimonial-author h4,
  .testimonial-author span {
    color: var(--default-color) !important;
  }
  .testimonial-photo {
    border-color: var(--accent-color) !important;
  }
  .testimonials-section .swiper-pagination-bullet {
    background: var(--accent-color) !important;
  }
  .testimonials-section .swiper-button-prev,
  .testimonials-section .swiper-button-next {
    background: var(--dark-surface) !important;
    border-color: var(--accent-color) !important;
    color: var(--accent-color) !important;
  }
}

/* --------------------------------------------------------------
# Footer - Mobile Enhancements
-------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .footer-top {
    padding: 60px 0 40px;
  }
  .footer .footer-about,
  .footer .footer-links,
  .footer .footer-contact {
    text-align: center;
  }
  .footer .footer-links h4,
  .footer .footer-contact h4,
  .footer .footer-about h3 {
    margin-bottom: 18px;
  }
  .footer .footer-links ul li {
    padding: 8px 0;
  }
  .footer .social-links {
    justify-content: center;
  }
  .footer .newsletter-form {
    gap: 10px;
  }
}

@media (max-width: 767.98px) {
  .footer-top {
    padding: 48px 0 32px;
  }
  .footer .social-links a {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  .footer .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }
  .footer .newsletter-form .form-control {
    width: 100%;
  }
  .footer .newsletter-form .btn {
    width: 100%;
  }
  .footer .contact-info p {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .footer .footer-links ul li a {
    padding: 10px 0;
  }
  .footer .newsletter h5 {
    margin-bottom: 8px;
  }
  .footer .newsletter-form .btn {
    margin-top: 8px;
  }
  .copyright {
    padding: 18px 0;
  }
  .copyright p {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Methods Section
--------------------------------------------------------------*/
.methods {
  padding: 80px 0;
}

.method-card {
  background: var(--surface-color);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

.method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.method-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), var(--neon-cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: transform 0.3s ease;
}

.method-card:hover .method-icon {
  transform: scale(1.1);
}

.method-icon i {
  font-size: 35px;
  color: white;
}

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

.method-card p {
  color: var(--default-color);
  line-height: 1.6;
  font-size: 16px;
  margin-bottom: 0;
}

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

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

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

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

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

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

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

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  background: var(--gradient-futuristic);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 20%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(0, 191, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.03) 0%, transparent 50%);
  z-index: 1;
}

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

.faq-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), var(--neon-cyan));
  color: var(--dark-surface);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-glow);
  border: 1px solid var(--accent-color);
}

.faq-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.faq-subtitle {
  font-size: 1.25rem;
  color: var(--default-color);
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

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

.faq .faq-container .faq-item {
  background: var(--dark-surface);
  position: relative;
  padding: 0;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border-glow);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), var(--shadow-glow);
}

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

.faq .faq-question:hover {
  background: rgba(0, 255, 136, 0.05);
}

.faq .faq-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), var(--neon-cyan));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  box-shadow: var(--shadow-glow);
  border: 1px solid var(--accent-color);
}

.faq .faq-icon i {
  font-size: 20px;
  color: var(--dark-surface);
}

.faq .faq-question h3 {
  flex: 1;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0;
  color: var(--heading-color);
  transition: 0.3s;
}

.faq .faq-toggle {
  width: 40px;
  height: 40px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq .faq-toggle i {
  font-size: 16px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.faq .faq-answer {
  padding: 0 30px 25px 100px;
  color: var(--default-color);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 30px 25px 80px;
}

.faq .faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 30px 25px 100px;
}

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

.faq .faq-item.active .faq-toggle i {
  color: var(--dark-surface);
}

.faq .faq-item.active .faq-question {
  background: rgba(0, 255, 136, 0.1);
  border-bottom: 1px solid var(--border-glow);
  border-radius: 1rem
  ;
}


.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 52px;
  transition: 0.3s;
  cursor: pointer;
  color: var(--default-color);
}

.faq h2,
.faq p {
  color: var(--default-color) !important;
}

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Contact Section - Futuristic
--------------------------------------------------------------*/
.contact {
  background: var(--gradient-futuristic);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(90deg, transparent 20%, rgba(0, 255, 136, 0.03) 50%, transparent 80%),
    linear-gradient(0deg, transparent 20%, rgba(0, 191, 255, 0.03) 50%, transparent 80%);
  z-index: 1;
}



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

.contact-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), var(--neon-cyan));
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.contact-subtitle {
  font-size: 1.25rem;
  color: var(--default-color);
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Contact Cards */
.contact-card {
  background: var(--dark-surface);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), var(--shadow-glow);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--border-glow);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--accent-color), var(--neon-cyan), var(--neon-blue));
  animation: gradient-flow 3s ease-in-out infinite;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 255, 136, 0.4);
  border-color: var(--accent-color);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), var(--neon-cyan));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
  border: 1px solid var(--accent-color);
}

.contact-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.card-icon i {
  font-size: 35px;
  color: white;
}

.contact-card h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.contact-card p {
  color: var(--default-color);
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.6;
}

.contact-link {
  display: block;
  text-align: center;
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.contact-link:hover {
  color: #c73650;
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-container {
  background: white;
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(233, 69, 96, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--accent-color), var(--neon-cyan));
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h3 {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.form-header p {
  color: var(--default-color);
  font-size: 1.1rem;
  margin: 0;
}

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

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

.contact-form .form-control {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #f8f9fa;
  color: var(--default-color);
}

.contact-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(233, 69, 96, 0.25);
  outline: none;
  background: white;
}

.contact-form .form-control::placeholder {
  color: #adb5bd;
}

.contact-form .form-check {
  margin-bottom: 25px;
}

.contact-form .form-check-input {
  border: 2px solid #e9ecef;
  border-radius: 4px;
}

.contact-form .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.contact-form .form-check-label {
  color: var(--default-color);
  font-size: 14px;
  line-height: 1.5;
}

.contact-form .form-check-label a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.contact-form .form-check-label a:hover {
  text-decoration: underline;
}

.contact-form .btn-primary {
  background: linear-gradient(135deg, var(--accent-color), var(--neon-cyan));
  border: 1px solid var(--accent-color);
  border-radius: 12px;
  padding: 15px 40px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

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

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

.contact-form .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 255, 136, 0.6);
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
}

.form-messages {
  margin-top: 20px;
}

.form-messages .loading,
.form-messages .error-message,
.form-messages .sent-message {
  display: none;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
}

.form-messages .loading {
  background: #e3f2fd;
  color: #1976d2;
}

.form-messages .error-message {
  background: #ffebee;
  color: #d32f2f;
}

.form-messages .sent-message {
  background: #e8f5e8;
  color: #2e7d32;
}

/* Additional Info */
.contact-additional-info {
  background: white;
  border-radius: 20px;
  padding: 50px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(233, 69, 96, 0.1);
}

.contact-additional-info .info-item {
  padding: 20px;
  transition: all 0.3s ease;
}

.contact-additional-info .info-item:hover {
  transform: translateY(-5px);
}

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

.contact-additional-info .info-item h4 {
  color: var(--heading-color);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-additional-info .info-item p {
  color: var(--default-color);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 2.5rem;
  }
  
  .contact-form-container {
    padding: 30px 20px;
  }
  
  .contact-card {
    padding: 30px 20px;
  }
  
  .contact-additional-info {
    padding: 30px 20px;
  }
}
.contact .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  ;
}

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

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
  color: var(--heading-color);
}

.contact h2,
.contact p {
  color: var(--default-color) !important;
}

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# About Section for Policy Pages
--------------------------------------------------------------*/
/* About sections on policy/thanks pages - redesigned */
.about.section {
  background: var(--gradient-futuristic);
  padding: 110px 0 120px 0;
  position: relative;
  overflow: hidden;
}

.about.section::before,
.about.section::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  filter: drop-shadow(0 0 10px rgba(0,255,136,0.5));
  z-index: 2;
}
.about.section::before { top: 0; }
.about.section::after { bottom: 0; }

.about.section .neon-bg {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.10) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 191, 255, 0.10) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(138, 43, 226, 0.06) 0%, transparent 50%);
  z-index: 1;
}

.about .container {
  position: relative;
  z-index: 3;
}

.about .section-title h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 16px;
  text-align: center;
  letter-spacing: .5px;
}

.about .section-title p {
  font-size: 1.1rem;
  color: var(--default-color);
  max-width: 820px;
  margin: 0 auto 42px;
  line-height: 1.7;
  text-align: center;
}

.about .section-title h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 34px 0 16px 0;
  text-align: left;
}

.about .section-title h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 24px 0 12px 0;
  text-align: left;
}

.about .section-title p:not(.section-title p) {
  font-size: 1rem;
  color: var(--default-color);
  line-height: 1.75;
  margin-bottom: 16px;
  text-align: left;
}

.about .section-title ul {
  color: var(--default-color);
  line-height: 1.7;
  margin: 14px 0 18px 0;
  padding-left: 20px;
}

.about .section-title ul li {
  margin-bottom: 10px;
  position: relative;
}

.about .section-title ul li::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 10px rgba(0,255,136,0.6);
}

.about .section-title strong {
  color: var(--accent-color);
  font-weight: 600;
}

.about .section-title a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.about .section-title a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.about .section-title a:hover::after {
  width: 100%;
}

.about .section-title a:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Специальные стили для контактной информации */
.about .contact-info {
  background: color-mix(in srgb, var(--dark-surface), transparent 5%);
  border: 1px solid var(--border-glow);
  border-radius: 16px;
  padding: 28px;
  margin: 32px 0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45), var(--shadow-glow);
  backdrop-filter: blur(10px);
}

/* Card-style content for policy/thanks about sections */
.about.section .row.gy-4 {
  row-gap: 24px;
}

.about.section .content {
  position: relative;
  background: color-mix(in srgb, var(--dark-surface), transparent 6%);
  border: 1px solid var(--border-glow);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45), var(--shadow-glow);
  backdrop-filter: blur(10px);
}

.about.section .content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--accent-color), var(--neon-cyan), var(--neon-blue));
  animation: gradient-flow 3s ease-in-out infinite;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.about.section .content h3 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 12px;
}

.about.section .content p {
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 12px;
}

.about.section .content ul {
  margin: 10px 0 12px 0;
  padding-left: 20px;
}

.about.section .content ul li {
  position: relative;
  margin-bottom: 8px;
}

.about.section .content ul li::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 10px rgba(0,255,136,0.6);
}

.about.section .content + .content {
  margin-top: 8px;
}

.about .contact-info h3 {
  color: var(--accent-color);
  margin-bottom: 20px;
  text-align: center;
}

.about .contact-info p {
  text-align: center;
  margin-bottom: 10px;
}

.about .contact-info strong {
  color: var(--heading-color);
}

/* Адаптивность */
@media (max-width: 768px) {
  .about .section-title h2 {
    font-size: 2.2rem;
  }
  
  .about .section-title h3 {
    font-size: 1.3rem;
  }
  
  .about .section-title h4 {
    font-size: 1.1rem;
  }
  
  .about .section-title p {
    font-size: 0.95rem;
  }
  
  .about .contact-info {
    padding: 18px;
  }
}

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

#cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark-surface);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), var(--shadow-glow);
  padding: 0;
  z-index: 1000;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 1px solid var(--border-glow);
  backdrop-filter: blur(20px);
  max-width: 500px;
  width: calc(100% - 40px);
  color: var(--default-color);
  font-family: var(--default-font);
  font-size: 15px;
}

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

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

#cookie-popup .popup-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}



#cookie-popup button {
  background: linear-gradient(135deg, var(--accent-color), var(--neon-cyan));
  color: var(--dark-surface);
  border: 1px solid var(--accent-color);
  padding: 15px 30px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
  align-self: center;
  min-width: 150px;
}

#cookie-popup button::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;
}

#cookie-popup button:hover::before {
  left: 100%;
}

#cookie-popup button:hover {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 255, 136, 0.6);
}

#cookie-popup .popup-message {
  text-align: center;
}

#cookie-popup .popup-message p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
}

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

#cookie-popup .popup-message a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

#cookie-popup .popup-message a:hover::after {
  width: 100%;
}

#cookie-popup .popup-message a:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
  #cookie-popup {
    bottom: 20px;
    left: 20px;
    right: 20px;
    transform: translateY(100px);
    max-width: none;
    width: auto;
  }
  
  #cookie-popup.show {
    transform: translateY(0);
  }
  
  #cookie-popup .popup-content {
    padding: 25px 20px;
  }
  
  #cookie-popup .popup-message p {
    font-size: 14px;
  }
  
  #cookie-popup button {
    padding: 12px 25px;
    font-size: 15px;
    min-width: 120px;
  }
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .copyright {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

.about_elem {
  margin-bottom: 2rem;
}


.swiper-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    padding: 0 3%;
}

.swiper-wrapper {
    display: flex;
    transition: transform 0.3s ease;
}

.swiper-slide {
    width: 33.33%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.swiper-slide-active {
    opacity: 1;
}

.swiper-slide-next,
.swiper-slide-prev {
    opacity: 0.5;
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border-radius: 50%;
    font-size: 24px;
    z-index: 10;
    cursor: pointer;
}

.swiper-button-prev {
    left: 10px;
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


.testimonial-img {
  width: 100%;
  max-width: 350px;
  max-height: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.growth {
  background-image: url('/assets/img/main.avif');
  background-size: cover;
  background-position: center;
  color: var(--contrast-color);
  padding: 300px 0;
}

.growth h2,
.growth p {
  color: var(--contrast-color) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.lead  {
  color: var(--accent-color);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Contact Section Buttons
--------------------------------------------------------------*/
.contact .btn-primary {
  background: linear-gradient(135deg, var(--accent-color), var(--neon-cyan));
  border: none;
  padding: 15px 35px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  color: white;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

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

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

.contact .btn-primary:hover {
  background: linear-gradient(135deg, #c73650, #a02d47);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 255, 136, 0.6);
  color: white;
}

.contact .btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(233, 69, 96, 0.3);
}

.contact .btn-outline-primary {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
  padding: 13px 33px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact .btn-outline-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  transition: left 0.3s ease;
  z-index: -1;
}

.contact .btn-outline-primary:hover::before {
  left: 0;
}

.contact .btn-outline-primary:hover {
  color: white;
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.contact .btn-outline-primary:active {
  transform: translateY(-1px);
}

.contact .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
  background: transparent;
  padding: 13px 33px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact .btn-outline-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
  z-index: -1;
}

.contact .btn-outline-light:hover::before {
  left: 0;
}

.contact .btn-outline-light:hover {
  color: white;
  border-color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.contact .btn-outline-light:active {
  transform: translateY(-1px);
}

/* Contact CTA Buttons */
.contact .cta-buttons .btn {
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact .cta-buttons .btn i {
  font-size: 16px;
}

/* Contact Form Submit Button */
.contact .contact-form .btn-primary {
  width: 100%;
  padding: 15px 30px;
  font-size: 16px;
  margin-top: 10px;
}

/* Contact Submit Button Special Styles */
.contact-submit-btn {
  background: linear-gradient(135deg, var(--accent-color), #c73650) !important;
  border: none !important;
  padding: 18px 40px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  color: white !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4) !important;
  position: relative !important;
  overflow: hidden !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  min-width: 250px !important;
}

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

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

.contact-submit-btn:hover {
  background: linear-gradient(135deg, #c73650, #a02d47) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 50px rgba(233, 69, 96, 0.5) !important;
  color: white !important;
}

.contact-submit-btn:active {
  transform: translateY(-2px) !important;
  box-shadow: 0 15px 35px rgba(233, 69, 96, 0.4) !important;
}

.contact-submit-btn:focus {
  outline: none !important;
  box-shadow: 0 0 0 4px rgba(233, 69, 96, 0.3) !important;
}

.contact-submit-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.contact-submit-btn:hover i {
  transform: translateX(3px);
}

/* Loading state for submit button */
.contact-submit-btn:disabled {
  opacity: 0.7 !important;
  cursor: not-allowed !important;
  transform: none !important;
}

.contact-submit-btn:disabled:hover {
  transform: none !important;
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4) !important;
}

/* Newsletter Button */
.contact .newsletter-form .btn-primary {
  padding: 12px 25px;
  font-size: 14px;
  border-radius: 8px;
  margin-left: 10px;
}

@media (max-width: 768px) {
  .contact .cta-buttons .btn {
    margin: 5px;
    width: 100%;
    max-width: 300px;
  }
  
  .contact .newsletter-form .btn-primary {
  margin-left: 0;
  margin-top: 10px;
  width: 100%;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}



.testimonials-section .container {
  position: relative;
  z-index: 2;
}

.testimonials-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), var(--neon-cyan));
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.testimonials-subtitle {
  font-size: 1.25rem;
  color: var(--default-color);
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  border: 1px solid rgba(233, 69, 96, 0.1);
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--accent-color), var(--neon-cyan));
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.testimonial-rating {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
  justify-content: center;
}

.testimonial-rating i {
  color: #ffc107;
  font-size: 18px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 30px;
  font-style: italic;
  text-align: center;
}

.testimonial-text::before {
  content: '"';
  font-size: 24px;
  color: var(--accent-color);
  font-weight: bold;
}

.testimonial-text::after {
  content: '"';
  font-size: 24px;
  color: var(--accent-color);
  font-weight: bold;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), var(--neon-cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}

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

.author-info span {
  font-size: 14px;
  color: var(--default-color);
  font-weight: 500;
}

.testimonials-cta {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(233, 69, 96, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.testimonials-cta h3 {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.testimonials-cta p {
  color: var(--default-color);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.testimonials-cta .btn {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.testimonials-cta .btn-primary {
  background: var(--accent-color);
  border: none;
  box-shadow: var(--shadow-glow);
}

.testimonials-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 255, 136, 0.6);
  background: var(--neon-cyan);
}

@media (max-width: 768px) {
  .testimonials-title {
    font-size: 2.5rem;
  }
  
  .testimonial-card {
    padding: 30px 20px;
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
  
  .testimonials-cta {
    padding: 40px 20px;
  }
  
  .testimonials-cta h3 {
    font-size: 1.5rem;
  }
}
}