
/* Fonts */
:root {
  --default-font: "Kode Mono", monospace, system-ui, -apple-system, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Kode Mono", monospace, sans-serif;
  --nav-font: "Kode Mono", monospace, 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: #0f1419;
--default-color: #e8f4f8;
--heading-color: #2d5a87;
--accent-color: #4a90a4;
--surface-color: #1a2332;
--contrast-color: #ffffff;
--nav-color: #e8f4f8;
--nav-hover-color: #4a90a4;
--nav-mobile-background-color: #1a2332;
--nav-dropdown-background-color: #2d5a87;
--nav-dropdown-color: #e8f4f8;
--nav-dropdown-hover-color: #4a90a4;
--gradient-primary: linear-gradient(135deg, #2d5a87 0%, #4a90a4 100%);
--gradient-secondary: linear-gradient(135deg, #4a90a4 0%, #6bb6c7 100%);
--gradient-accent: linear-gradient(135deg, #2d5a87 0%, #4a90a4 100%);
--shadow-primary: 0 10px 30px rgba(45, 90, 135, 0.3);
--shadow-secondary: 0 5px 15px rgba(45, 90, 135, 0.2);

}

/* Color Presets */

.light-background {
  --background-color: #1a2332;
  --surface-color: #2d5a87;
}

.dark-background {
  --background-color: #0f1419;
  --default-color: #e8f4f8;
  --heading-color: #2d5a87;
  --surface-color: #1a2332;
  --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 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 20, 25, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(74, 144, 164, 0.2);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(15, 20, 25, 0.98);
  box-shadow: 0 4px 20px rgba(45, 90, 135, 0.3);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.logo-section {
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.logo-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(45, 90, 135, 0.3);
  transition: all 0.3s ease;
}

.logo:hover .logo-icon {
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 6px 20px rgba(45, 90, 135, 0.4);
}

.logo-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

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

.sitename {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.tagline {
  font-size: 12px;
  color: var(--accent-color);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navmenu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  color: var(--default-color);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(74, 144, 164, 0.1), transparent);
  transition: left 0.5s;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link i {
  font-size: 16px;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(74, 144, 164, 0.1);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.nav-link:hover i,
.nav-link.active i {
  transform: scale(1.1);
}

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

.btn-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--gradient-accent);
  color: var(--contrast-color);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 90, 135, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 90, 135, 0.4);
  color: var(--contrast-color);
}

.btn-cta i {
  transition: transform 0.3s ease;
}

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

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1002;
}

.mobile-nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--default-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-nav-toggle:hover {
  background: rgba(74, 144, 164, 0.1);
}

.mobile-nav-toggle:hover span {
  background: var(--accent-color);
}

@media (max-width: 1200px) {
  .header-content {
    padding: 15px 20px;
  }
  
  .navmenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.98) 0%, rgba(26, 35, 50, 0.98) 100%);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 30px 30px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(74, 144, 164, 0.3);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 1001;
  }
  
  .navmenu.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-bottom: 30px;
  }
  
  .nav-list .nav-item {
    opacity: 0;
    transform: translateX(20px);
    animation: slideInRight 0.3s ease forwards;
  }
  
  .nav-list .nav-item:nth-child(1) { animation-delay: 0.1s; }
  .nav-list .nav-item:nth-child(2) { animation-delay: 0.2s; }
  .nav-list .nav-item:nth-child(3) { animation-delay: 0.3s; }
  .nav-list .nav-item:nth-child(4) { animation-delay: 0.4s; }
  .nav-list .nav-item:nth-child(5) { animation-delay: 0.5s; }
  
  @keyframes slideInRight {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .nav-link {
    width: 100%;
    justify-content: flex-start;
    padding: 18px 20px;
    font-size: 16px;
    border-radius: 12px;
    margin-bottom: 5px;
    position: relative;
    overflow: hidden;
  }
  
  .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 164, 0.1), transparent);
    transition: left 0.5s;
  }
  
  .nav-link:hover::before {
    left: 100%;
  }
  
  .header-actions {
    width: 100%;
    justify-content: center;
  }
  
  .btn-cta {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
    font-size: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.3s ease 0.6s forwards;
  }
  
  @keyframes slideInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .mobile-nav-toggle {
    display: flex;
    order: 3;
  }
  
.mobile-nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

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

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

/* Отключаем Bootstrap псевдоэлементы для мобильного меню */
.mobile-nav-toggle::before,
.mobile-nav-toggle::after {
  display: none !important;
  content: none !important;
}

/* Mobile menu overlay */
.navmenu::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: -1;
}

.navmenu.active::before {
  opacity: 1;
  visibility: visible;
}
}

@media (max-width: 768px) {
  .header-content {
    padding: 12px 15px;
  }
  
  .logo {
    gap: 10px;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
  }
  
  .logo-icon i {
    font-size: 20px;
  }
  
  .sitename {
    font-size: 24px;
  }
  
  .tagline {
    font-size: 11px;
  }
  
  .mobile-nav-toggle {
    display: flex;
    order: 3;
    margin-left: auto;
  }
}

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

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

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

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

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

  .navmenu .dropdown ul a {
    padding: 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) {

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

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

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

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

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

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

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

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

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

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

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


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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background: linear-gradient(135deg, var(--background-color) 0%, var(--surface-color) 100%);
  color: var(--default-color);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(45, 90, 135, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(74, 144, 164, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer .footer-links {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {

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

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 100px 0 80px 0;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--background-color) 0%, #1a1a2e 50%, #16213e 100%);
  overflow: hidden;
}

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

.hero h2 {
  margin: 0;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(45deg, #ffffff, #4ecdc4, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  animation: heroTitleGlow 3s ease-in-out infinite alternate;
}

@keyframes heroTitleGlow {
  0% {
    filter: drop-shadow(0 0 5px rgba(78, 205, 196, 0.3));
  }
  100% {
    filter: drop-shadow(0 0 20px rgba(78, 205, 196, 0.6));
  }
}

.hero p {
  color: rgba(255, 255, 255, 0.8);
  margin: 20px 0 30px 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .download-btn {
  color: var(--contrast-color);
  background: var(--gradient-accent);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  padding: 15px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-secondary);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.hero .download-btn::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 .download-btn:hover::before {
  left: 100%;
}

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

.hero .download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  color: var(--contrast-color);
}

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

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

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

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

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

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

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

.about ul li {
  display: flex;
  align-items: center;
}

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

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

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

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

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


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  background: linear-gradient(135deg, var(--background-color) 0%, var(--surface-color) 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(45, 90, 135, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(74, 144, 164, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.features-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.features-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74, 144, 164, 0.1);
  border: 1px solid rgba(74, 144, 164, 0.3);
  border-radius: 25px;
  padding: 8px 20px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.features-badge i {
  font-size: 16px;
}

.features-header h2 {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 20px 0;
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.features-header p {
  font-size: 18px;
  color: rgba(232, 244, 248, 0.8);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.feature-card {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 35, 50, 0.8) 100%);
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid rgba(74, 144, 164, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

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

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(45, 90, 135, 0.3);
  border-color: var(--accent-color);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-accent);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(45, 90, 135, 0.4);
}

.feature-icon i {
  font-size: 32px;
  color: var(--contrast-color);
}

.feature-content {
  flex: 1;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.feature-content p {
  font-size: 16px;
  color: rgba(232, 244, 248, 0.8);
  line-height: 1.6;
  margin: 0;
}

.feature-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
}

.tag {
  background: rgba(74, 144, 164, 0.1);
  color: var(--accent-color);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(74, 144, 164, 0.3);
}

.feature-link {
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

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

.learn-more:hover {
  color: var(--heading-color);
  transform: translateX(5px);
}

.learn-more:hover::after {
  width: 100%;
}

.learn-more i {
  transition: transform 0.3s ease;
}

.learn-more:hover i {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .features {
    padding: 80px 0;
  }
  
  .features-header {
    margin-bottom: 60px;
  }
  
  .features-header h2 {
    font-size: 36px;
  }
  
  .features-header p {
    font-size: 16px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 30px 20px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon i {
    font-size: 28px;
  }
  
  .feature-content h3 {
    font-size: 20px;
  }
}

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

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

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

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

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

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

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

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

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

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

.feature-details .features-item ul i {
  font-size: 24px;
  padding-right: 8px;
  color: var(--accent-color);
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(78, 205, 196, 0.3));
}

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  background: linear-gradient(135deg, var(--background-color) 0%, var(--surface-color) 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 20px auto 20px auto;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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

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

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

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

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

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

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

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

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

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

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

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

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

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 24px;
  line-height: 0;
  transition: all 0.3s ease;
  color: var(--accent-color);
  filter: drop-shadow(0 0 8px rgba(78, 205, 196, 0.3));
  z-index: 2;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
  background-color: rgba(26, 26, 46, 0.8);
  box-shadow: 0 0 15px rgba(78, 205, 196, 0.3);
  transform: translateY(-2px);
}



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

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

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

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

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

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

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

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

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

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

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

#cookie-popup button:hover {
  background: var(--heading-color);
}

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

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

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

/* New Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 35, 50, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(74, 144, 164, 0.3);
  box-shadow: 0 -10px 30px rgba(45, 90, 135, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  display: none;
}

.cookie-banner.show {
  transform: translateY(0);
  display: block;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  padding: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.cookie-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(45, 90, 135, 0.3);
  transition: all 0.3s ease;
}

.cookie-icon:hover {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 6px 20px rgba(45, 90, 135, 0.4);
}

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

.cookie-text {
  flex: 1;
  min-width: 0;
  margin-right: 20px;
}

.cookie-text h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: var(--heading-color);
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

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

.cookie-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 5px;
}

.cookie-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--accent-color);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 2px 0;
  white-space: nowrap;
}

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

.cookie-link:hover {
  color: var(--heading-color);
  transform: translateX(3px);
}

.cookie-link:hover::after {
  width: 100%;
}

.cookie-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.cookie-link:hover i {
  transform: scale(1.1);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}

.cookie-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 100px;
  justify-content: center;
  white-space: nowrap;
}

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

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

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

.cookie-btn:hover i {
  transform: scale(1.1);
}

.cookie-btn-primary {
  background: var(--gradient-accent);
  color: var(--contrast-color);
  box-shadow: 0 4px 15px rgba(45, 90, 135, 0.3);
}

.cookie-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 90, 135, 0.4);
  color: var(--contrast-color);
}

.cookie-btn-secondary {
  background: rgba(74, 144, 164, 0.1);
  color: var(--accent-color);
  border: 1px solid rgba(74, 144, 164, 0.3);
}

.cookie-btn-secondary:hover {
  background: rgba(74, 144, 164, 0.2);
  color: var(--heading-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(45, 90, 135, 0.2);
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    gap: 20px;
    padding: 25px 20px;
    text-align: left;
  }
  
  .cookie-icon {
    width: 50px;
    height: 50px;
    align-self: flex-start;
  }
  
  .cookie-icon i {
    font-size: 24px;
  }
  
  .cookie-text {
    margin-right: 0;
  }
  
  .cookie-text h4 {
    font-size: 16px;
  }
  
  .cookie-text p {
    font-size: 13px;
  }
  
  .cookie-links {
    justify-content: flex-start;
    gap: 12px;
  }
  
  .cookie-actions {
    width: 100%;
    justify-content: stretch;
    gap: 8px;
  }
  
  .cookie-btn {
    flex: 1;
    min-width: 80px;
    font-size: 12px;
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .cookie-content {
    padding: 20px 15px;
  }
  
  .cookie-actions {
    flex-direction: column;
    gap: 8px;
  }
  
  .cookie-btn {
    width: 100%;
    min-width: auto;
  }
  
  .cookie-links {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}


/*  New Swiper */
.feature-slider {
  position: relative;
  padding: 40px 0 80px;
  overflow: hidden;
}

.feature-slider .swiper-wrapper {
  align-items: stretch;
}

.feature-slider .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}

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

.feature-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(74, 144, 164, 0.3);
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.feature-slider .swiper-pagination-bullet::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: var(--gradient-accent);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.feature-slider .swiper-pagination-bullet-active {
  background: transparent;
  border-color: var(--accent-color);
  transform: scale(1.2);
}

.feature-slider .swiper-pagination-bullet-active::before {
  width: 8px;
  height: 8px;
}

.feature-slider .swiper-pagination-bullet:hover {
  background: rgba(74, 144, 164, 0.5);
  transform: scale(1.1);
}

.feature_example {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 35, 50, 0.9) 100%);
  border: 1px solid rgba(74, 144, 164, 0.2);
  border-radius: 25px;
  color: var(--default-color);
  padding: 50px 40px;
  box-shadow: 0 10px 30px rgba(45, 90, 135, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

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

.feature_example:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(45, 90, 135, 0.3);
  border-color: var(--accent-color);
}

.feature_example h3 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: var(--heading-color);
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.feature_example p {
  font-size: 18px;
  color: rgba(232, 244, 248, 0.8);
  line-height: 1.6;
  margin: 0 0 25px 0;
  position: relative;
  z-index: 2;
}

.feature_example ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  position: relative;
  z-index: 2;
}

.feature_example ul li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 16px;
  color: rgba(232, 244, 248, 0.9);
  line-height: 1.5;
}

.feature_example ul li:last-child {
  margin-bottom: 0;
}

.feature_example ul li i {
  color: var(--accent-color);
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature_example:hover ul li i {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(74, 144, 164, 0.5));
}

.feature_example ul li span {
  flex: 1;
}

.feature_example p:last-child {
  margin-bottom: 0;
  font-style: italic;
  color: rgba(232, 244, 248, 0.7);
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .feature_example {
    padding: 30px 25px;
  }
  
  .feature_example h3 {
    font-size: 24px;
  }
  
  .feature_example p {
    font-size: 16px;
  }
  
  .feature_example ul li {
    font-size: 14px;
    gap: 12px;
  }
  
  .feature_example ul li i {
    font-size: 18px;
  }
  
  .feature-slider {
    padding: 20px 0 60px;
  }
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* New Footer Styles */
.footer-main {
  padding: 80px 0 40px;
  position: relative;
  z-index: 2;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  align-items: start;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand {
  max-width: 400px;
}

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

.footer-logo .logo-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(45, 90, 135, 0.3);
}

.footer-logo .logo-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

.footer-logo .logo-text h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.footer-logo .logo-text span {
  font-size: 12px;
  color: var(--accent-color);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-description {
  color: rgba(232, 244, 248, 0.8);
  line-height: 1.6;
  font-size: 16px;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(74, 144, 164, 0.1);
  border: 2px solid rgba(74, 144, 164, 0.3);
  border-radius: 12px;
  color: var(--accent-color);
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  transition: left 0.3s ease;
  z-index: -1;
}

.social-link:hover::before {
  left: 0;
}

.social-link:hover {
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(45, 90, 135, 0.3);
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 20px 0;
  position: relative;
  padding-bottom: 10px;
}

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

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  color: rgba(232, 244, 248, 0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 20px;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 25px;
}

.footer-links a:hover::before {
  width: 15px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(232, 244, 248, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
}

.contact-item i {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 16px;
}

.contact-item:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-bottom {
  background: rgba(15, 20, 25, 0.8);
  border-top: 1px solid rgba(74, 144, 164, 0.2);
  padding: 25px 0;
  position: relative;
  z-index: 2;
}

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

.footer-copyright p {
  margin: 0;
  color: rgba(232, 244, 248, 0.6);
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 30px;
  align-items: center;
}

.footer-legal a {
  color: rgba(232, 244, 248, 0.6);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

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

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

.footer-legal a:hover::after {
  width: 100%;
}

@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: 60px 0 30px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-social {
    justify-content: center;
  }
}

/* New Testimonials Styles */
.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74, 144, 164, 0.1);
  border: 1px solid rgba(74, 144, 164, 0.3);
  border-radius: 25px;
  padding: 8px 20px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonials-badge i {
  font-size: 16px;
}

.testimonials-header h2 {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 20px 0;
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.testimonials-header p {
  font-size: 18px;
  color: rgba(232, 244, 248, 0.8);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 35, 50, 0.8) 100%);
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid rgba(74, 144, 164, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

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

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(45, 90, 135, 0.3);
  border-color: var(--accent-color);
}

.testimonial-content {
  flex: 1;
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.quote-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.testimonial-card:hover .quote-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(45, 90, 135, 0.4);
}

.quote-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

.testimonial-text {
  font-size: 16px;
  color: rgba(232, 244, 248, 0.9);
  line-height: 1.6;
  margin: 0;
  font-style: italic;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-color);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.testimonial-card:hover .author-avatar {
  transform: scale(1.05);
  border-color: var(--heading-color);
  box-shadow: 0 0 15px rgba(74, 144, 164, 0.4);
}

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

.author-info {
  flex: 1;
}

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

.author-info span {
  font-size: 14px;
  color: var(--accent-color);
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}

.rating {
  display: flex;
  gap: 2px;
}

.rating i {
  color: #ffd700;
  font-size: 16px;
  filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.3));
  transition: all 0.3s ease;
}

.testimonial-card:hover .rating i {
  transform: scale(1.1);
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.5));
}

@media (max-width: 768px) {
  .testimonials {
    padding: 80px 0;
  }
  
  .testimonials-header {
    margin-bottom: 60px;
  }
  
  .testimonials-header h2 {
    font-size: 36px;
  }
  
  .testimonials-header p {
    font-size: 16px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 30px 20px;
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .author-avatar {
    width: 80px;
    height: 80px;
  }
}
