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

/* 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: #0f0a1a;
--default-color: #e5e7eb;
--heading-color: #ec4899;
--accent-color: #a855f7;
--surface-color: #1a0f2e;
--contrast-color: #ffffff;
--nav-color: #e5e7eb;
--nav-hover-color: #ec4899;
--nav-mobile-background-color: #1a0f2e;
--nav-dropdown-background-color: #2d1b3d;
--nav-dropdown-color: #e5e7eb;
--nav-dropdown-hover-color: #ec4899;
--gradient-primary: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
--gradient-secondary: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
--gradient-accent: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
--shadow-primary: 0 10px 30px rgba(168, 85, 247, 0.3);
--shadow-secondary: 0 5px 15px rgba(236, 72, 153, 0.2);

}

/* Color Presets */

.light-background {
  --background-color: #1a0f2e;
  --surface-color: #2d1b3d;
}

.dark-background {
  --background-color: #0f0a1a;
  --default-color: #e5e7eb;
  --heading-color: #ec4899;
  --surface-color: #1a0f2e;
  --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: #ec4899;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

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

/*--------------------------------------------------------------
# New Global Header
--------------------------------------------------------------*/
.header-new {
  position: relative;
  z-index: 1000;
}

.header-top-bar {
  background: linear-gradient(135deg, #2d1b3d 0%, #3d2b4d 100%);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-contact-info {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.header-contact-info span {
  color: #e5e7eb;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-contact-info i {
  color: #a855f7;
  font-size: 14px;
}

.header-social-links {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.header-social-links a {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a855f7;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.header-social-links a:hover {
  background: #a855f7;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
}

.header-main {
  background: linear-gradient(135deg, #0f1419 0%, #2d1b3d 100%);
  padding: 20px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 2px solid rgba(168, 85, 247, 0.2);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

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

.logo-new:hover {
  transform: scale(1.02);
}

.logo-badge {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #a855f7 0%, #db2777 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
  position: relative;
  overflow: hidden;
}

.logo-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.logo-content {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ec4899 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-subtitle {
  font-size: 11px;
  color: #a855f7;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-top: 2px;
}

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

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

.mobile-menu-close-wrapper {
  display: none;
}

.mobile-menu-close {
  display: none;
}

.nav-item {
  color: #e5e7eb;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

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

.nav-item:hover,
.nav-item.active {
  color: #a855f7;
  background: rgba(168, 85, 247, 0.1);
  transform: translateY(-2px);
}

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #a855f7, transparent);
  border-radius: 2px;
}

.btn-enroll {
  background: linear-gradient(135deg, #a855f7 0%, #db2777 100%);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
  border: none;
  cursor: pointer;
}

.btn-enroll:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(168, 85, 247, 0.5);
  background: linear-gradient(135deg, #db2777 0%, #a855f7 100%);
}

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

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #a855f7;
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 1199px) {
  .navmenu-new {
    position: relative;
  }
  
  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #0f1419 0%, #2d1b3d 100%);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 10px;
    transition: right 0.3s ease;
    z-index: 9999;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  }
  
  .nav-list.active {
    right: 0;
  }
  
  .nav-item {
    width: 100%;
    justify-content: flex-start;
  }
  
  .btn-enroll {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .mobile-menu-close-wrapper {
    display: flex;
    justify-content: flex-end;
    padding: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    padding-bottom: 15px;
  }

  .mobile-menu-close {
    background: transparent;
    border: none;
    color: #a855f7;
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 5px;
  }

  .mobile-menu-close:hover {
    color: #ec4899;
    background: rgba(168, 85, 247, 0.1);
    transform: rotate(90deg);
  }
}

.header .logo {
  line-height: 1;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header .logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #9333ea 0%, #ec4899 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
  transition: all 0.3s ease;
}

.header .logo:hover .logo-icon {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.5);
}

.header .logo-text {
  display: flex;
  flex-direction: column;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.header .logo-tagline {
  font-size: 11px;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.header .logo:hover h1 {
  color: var(--heading-color);
}

.header .nav-link {
  color: var(--default-color);
  padding: 8px 16px;
  margin: 0 4px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
}

.header .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.header .nav-link:hover,
.header .nav-link.active {
  color: var(--heading-color);
  background: rgba(236, 72, 153, 0.1);
}

.header .nav-link:hover::after,
.header .nav-link.active::after {
  width: 80%;
}

.header .btn-header-cta {
  color: #ffffff;
  background: linear-gradient(135deg, #9333ea 0%, #ec4899 100%);
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.header .btn-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.5);
  background: linear-gradient(135deg, #ec4899 0%, #9333ea 100%);
}

@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;
    gap: 8px;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu .nav-link {
    color: var(--nav-color);
    padding: 8px 16px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 6px;
    position: relative;
    text-decoration: none;
  }

  .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) {
  .mobile-nav-toggle {
    color: var(--default-color);
    font-size: 28px;
    line-height: 0;
    cursor: pointer;
    transition: all 0.3s;
    padding: 8px;
    border-radius: 6px;
  }

  .mobile-nav-toggle:hover {
    color: var(--heading-color);
    background: rgba(236, 72, 153, 0.1);
  }

  .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 .nav-link {
    color: var(--nav-dropdown-color);
    padding: 12px 20px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
    border-radius: 6px;
    margin: 4px 0;
  }

  .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 .nav-link:hover,
  .navmenu .nav-link.active {
    color: var(--nav-dropdown-hover-color);
    background: rgba(236, 72, 153, 0.1);
  }

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# New Footer
--------------------------------------------------------------*/
.footer-new {
  background: linear-gradient(135deg, #0f0a1a 0%, #2d1b3d 100%);
  color: #e5e7eb;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
  border-top: 3px solid rgba(168, 85, 247, 0.3);
}

.footer-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

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

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

.logo-badge-footer {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #a855f7 0%, #db2777 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.logo-content-footer {
  display: flex;
  flex-direction: column;
}

.logo-name-footer {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ec4899 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-subtitle-footer {
  font-size: 11px;
  color: #a855f7;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-top: 2px;
}

.footer-about {
  color: #e5e7eb;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 14px;
}

.footer-certifications {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 6px;
  font-size: 13px;
  color: #a855f7;
  font-weight: 500;
}

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

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(168, 85, 247, 0.2);
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #a855f7;
}

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

.footer-menu li a {
  color: #e5e7eb;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-size: 14px;
  padding: 6px 0;
}

.footer-menu li a i {
  color: #a855f7;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.footer-menu li a:hover {
  color: #a855f7;
  padding-left: 5px;
}

.footer-menu li a:hover i {
  transform: translateX(3px);
}

.footer-newsletter-col {
  max-width: 320px;
}

.newsletter-text {
  color: #e5e7eb;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.newsletter-form-new {
  margin-bottom: 30px;
}

.input-wrapper {
  display: flex;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(168, 85, 247, 0.2);
  transition: all 0.3s ease;
}

.input-wrapper:focus-within {
  border-color: #a855f7;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.input-wrapper input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 18px;
  color: #ffffff;
  font-size: 14px;
  outline: none;
}

.input-wrapper input::placeholder {
  color: #6b7280;
}

.newsletter-btn {
  background: linear-gradient(135deg, #a855f7 0%, #db2777 100%);
  border: none;
  padding: 14px 20px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-btn:hover {
  background: linear-gradient(135deg, #db2777 0%, #a855f7 100%);
  transform: scale(1.05);
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #e5e7eb;
  font-size: 14px;
  margin-bottom: 15px;
}

.contact-item i {
  color: #a855f7;
  font-size: 16px;
  width: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item div {
  flex: 1;
}

.contact-item strong {
  color: #ffffff;
  display: block;
  margin-bottom: 5px;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.3), transparent);
  margin: 40px 0 30px;
  position: relative;
  z-index: 1;
}

.footer-bottom-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.copyright-new {
  color: #6b7280;
  font-size: 14px;
  margin: 0;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-legal-new {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-new a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal-new a:hover {
  color: #a855f7;
}

.footer-social-new {
  display: flex;
  gap: 12px;
}

.footer-social-new a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a855f7;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-new a:hover {
  background: #a855f7;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

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

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom-new {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-right {
    flex-direction: column;
    width: 100%;
  }
  
  .footer-legal-new {
    justify-content: center;
  }
  
  .footer-social-new {
    justify-content: center;
  }
}

.footer {
  color: var(--default-color);
  background: #0f0a1a;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(236, 72, 153, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {

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

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 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, #ec4899, #a855f7, #9333ea);
  -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%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

/* Override old features styles when using features-new class */
.features-new.features {
  background: linear-gradient(135deg, #0f1419 0%, #2d1b3d 100%);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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: 50%;
  transform: translateX(-50%) translateY(100px);
  background: linear-gradient(135deg, #1a0f2e 0%, #2d1b3d 100%);
  color: #e5e7eb;
  border: 1px solid rgba(168, 85, 247, 0.3);
  padding: 20px 25px;
  font-family: var(--default-font);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(168, 85, 247, 0.2);
  border-radius: 16px;
  font-size: 14px;
  max-width: 500px;
  width: calc(100% - 40px);
  z-index: 10000;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s linear 0.5s;
  backdrop-filter: blur(10px);
}

#cookie-popup.show {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s linear 0s;
}

#cookie-popup p {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: rgba(229, 231, 235, 0.9);
}

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

#cookie-popup .popup-message {
  flex: 1;
}

#cookie-popup .popup-message a {
  color: #a855f7;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
}

#cookie-popup .popup-message a:hover {
  color: #ec4899;
  border-bottom-color: #ec4899;
}

#cookie-popup button {
  background: linear-gradient(135deg, #a855f7 0%, #db2777 100%);
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
  font-family: var(--default-font);
}

#cookie-popup button:hover {
  background: linear-gradient(135deg, #db2777 0%, #a855f7 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(168, 85, 247, 0.5);
}

#cookie-popup button:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  #cookie-popup {
    bottom: 10px;
    left: 10px;
    right: 10px;
    width: auto;
    max-width: none;
    transform: translateX(0) translateY(100px);
    padding: 18px 20px;
  }
  
  #cookie-popup.show {
    transform: translateX(0) translateY(0);
  }
  
  #cookie-popup .popup-content {
    gap: 12px;
  }
  
  #cookie-popup button {
    width: 100%;
    text-align: center;
  }
}

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer-logo .logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #9333ea 0%, #ec4899 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.footer-logo h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--default-color);
  margin: 0;
}

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

.footer-description {
  color: rgba(229, 231, 235, 0.8);
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 0;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(236, 72, 153, 0.2);
}

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

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

.footer-links a {
  color: rgba(229, 231, 235, 0.8);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

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

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

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

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(236, 72, 153, 0.1);
  border: 1px solid rgba(236, 72, 153, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: linear-gradient(135deg, #9333ea 0%, #ec4899 100%);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

.footer-newsletter {
  margin-top: 20px;
}

.footer-newsletter .input-group {
  display: flex;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(22, 27, 34, 0.8);
  border: 1px solid rgba(236, 72, 153, 0.2);
}

.footer-newsletter .form-control {
  background: transparent;
  border: none;
  color: var(--default-color);
  padding: 12px 16px;
  font-size: 14px;
  flex: 1;
}

.footer-newsletter .form-control:focus {
  outline: none;
  box-shadow: none;
}

.footer-newsletter .form-control::placeholder {
  color: rgba(229, 231, 235, 0.5);
}

.btn-newsletter {
  background: linear-gradient(135deg, #9333ea 0%, #ec4899 100%);
  border: none;
  color: #ffffff;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-newsletter:hover {
  background: linear-gradient(135deg, #ec4899 0%, #9333ea 100%);
  transform: scale(1.05);
}

.footer-contact {
  margin-top: 20px;
}

.footer-contact p {
  color: rgba(229, 231, 235, 0.8);
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  color: var(--accent-color);
  margin-right: 8px;
}

.footer-bottom {
  background: rgba(13, 17, 23, 0.8);
  border-top: 1px solid rgba(236, 72, 153, 0.1);
  padding: 25px 0;
  position: relative;
  z-index: 2;
}

.copyright {
  color: rgba(229, 231, 235, 0.6);
  font-size: 14px;
  margin: 0;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: rgba(229, 231, 235, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

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

.footer-legal-links .separator {
  color: rgba(229, 231, 235, 0.3);
}

@media (max-width: 768px) {
  .footer-legal-links {
    justify-content: flex-start;
    margin-top: 15px;
  }
  
  .footer-main {
    padding: 40px 0 30px;
  }
  
  .footer-widget {
    margin-bottom: 40px;
  }
}

/*--------------------------------------------------------------
# New Hero Section
--------------------------------------------------------------*/
section.hero-new,
.hero-new {
  position: relative !important;
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  padding: 120px 0 80px !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, #0f0a1a 0%, #2d1b3d 50%, #0f1419 100%) !important;
  width: 100% !important;
}

.hero-animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(168, 85, 247, 0.3), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(236, 72, 153, 0.3), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(168, 85, 247, 0.2), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(236, 72, 153, 0.2), transparent),
    radial-gradient(2px 2px at 90% 40%, rgba(168, 85, 247, 0.2), transparent),
    radial-gradient(1px 1px at 33% 60%, rgba(236, 72, 153, 0.2), transparent),
    radial-gradient(1px 1px at 55% 80%, rgba(168, 85, 247, 0.2), transparent);
  background-size: 200% 200%;
  animation: particleMove 20s ease-in-out infinite;
  opacity: 0.6;
}

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

.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, transparent, rgba(168, 85, 247, 0.1));
  animation: waveMove 8s ease-in-out infinite;
}

@keyframes waveMove {
  0%, 100% { transform: translateY(0) scaleY(1); }
  50% { transform: translateY(-20px) scaleY(1.1); }
}

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

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.4), transparent);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.4), transparent);
  bottom: 20%;
  right: 15%;
  animation-delay: 5s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.3), transparent);
  top: 50%;
  right: 30%;
  animation-delay: 10s;
}

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

.hero-content-new {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 50px;
  margin-bottom: 30px;
  font-size: 14px;
  color: #a855f7;
  font-weight: 600;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(168, 85, 247, 0); }
}

.hero-badge i {
  color: #a855f7;
}

.hero-title-new {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #ffffff;
  letter-spacing: -1px;
}

.gradient-text {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description-new {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(229, 231, 235, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
}



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

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #a855f7;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: rgba(229, 231, 235, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #a855f7 0%, #db2777 100%);
  color: #ffffff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.5);
  background: linear-gradient(135deg, #db2777 0%, #a855f7 100%);
}

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

.btn-hero-primary:hover i {
  transform: translateX(5px);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-3px);
}

.hero-images-new {
  position: relative;
  z-index: 2;
}

.hero-image-wrapper {
  position: relative;
  height: 600px;
}

.hero-image-card {
  position: absolute;
  width: 300px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-image-card .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.9));
  color: #ffffff;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.hero-image-card:hover {
  transform: translateY(-20px) scale(1.05);
  box-shadow: 0 20px 60px rgba(168, 85, 247, 0.4);
  z-index: 10;
}

.hero-image-card:hover img {
  transform: scale(1.1);
}

.hero-image-card:hover .card-overlay {
  transform: translateY(0);
}

.card-overlay h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #a855f7;
}

.card-overlay p {
  font-size: 14px;
  opacity: 0.9;
}

.card-1 {
  top: 0;
  left: 0;
  z-index: 1;
}

.card-2 {
  top: 50px;
  left: 150px;
  z-index: 2;
}

.card-3 {
  top: 100px;
  left: 300px;
  z-index: 3;
}

/*--------------------------------------------------------------
# New Features Section
--------------------------------------------------------------*/
section.features-new,
.features-new {
  position: relative !important;
  padding: 100px 0 !important;
  background: linear-gradient(135deg, #0f1419 0%, #2d1b3d 100%) !important;
  overflow: hidden !important;
  width: 100% !important;
}

.features-animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.features-grid-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(168, 85, 247, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.features-floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.2;
  animation: shapeFloat 20s ease-in-out infinite;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: rgba(168, 85, 247, 0.4);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: rgba(236, 72, 153, 0.4);
  top: 60%;
  right: 10%;
  animation-delay: 5s;
}

.shape-3 {
  width: 180px;
  height: 180px;
  background: rgba(168, 85, 247, 0.3);
  bottom: 20%;
  left: 20%;
  animation-delay: 10s;
}

.shape-4 {
  width: 120px;
  height: 120px;
  background: rgba(236, 72, 153, 0.3);
  top: 30%;
  right: 30%;
  animation-delay: 15s;
}

@keyframes shapeFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.1); }
  50% { transform: translate(-20px, 20px) scale(0.9); }
  75% { transform: translate(20px, 30px) scale(1.05); }
}

.section-header-new {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 50px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #a855f7;
  font-weight: 600;
}

.section-badge i {
  color: #a855f7;
}

.section-title-new {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-description-new {
  font-size: 18px;
  color: rgba(229, 231, 235, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.features-swiper-wrapper {
  position: relative;
  z-index: 2;
  padding: 20px 0 60px;
  overflow: hidden;
}

.features-swiper {
  overflow: visible;
  padding-bottom: 50px;
}

.features-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.features-swiper .swiper-slide .feature-card-new {
  width: 100%;
  height: 100%;
}

/* Features Swiper Navigation */
.features-button-prev,
.features-button-next {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #a855f7 0%, #db2777 100%);
  border-radius: 50%;
  color: #ffffff;
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.features-button-prev::after,
.features-button-next::after {
  font-size: 18px;
  font-weight: 700;
}

.features-button-prev:hover,
.features-button-next:hover {
  background: linear-gradient(135deg, #db2777 0%, #a855f7 100%);
  box-shadow: 0 6px 25px rgba(168, 85, 247, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.features-button-prev {
  left: -25px;
}

.features-button-next {
  right: -25px;
}

/* Features Swiper Pagination */
.features-pagination {
  bottom: 0 !important;
  position: absolute;
}

.features-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(168, 85, 247, 0.3);
  opacity: 1;
  transition: all 0.3s ease;
}

.features-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #a855f7 0%, #db2777 100%);
  width: 30px;
  border-radius: 6px;
}

.feature-card-new {
  background: rgba(22, 27, 34, 0.6);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  backdrop-filter: blur(10px);
}

.feature-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #a855f7, #ec4899);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.feature-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(168, 85, 247, 0.3);
  border-color: rgba(168, 85, 247, 0.4);
}

.feature-card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.feature-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-card-new:hover .feature-card-image img {
  transform: scale(1.15);
}

.feature-card-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #a855f7 0%, #db2777 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
  transition: all 0.4s ease;
}

.feature-card-new:hover .feature-card-icon {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.6);
}

.feature-card-content {
  padding: 30px;
}

.feature-card-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.feature-card-content p {
  color: rgba(229, 231, 235, 0.8);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 15px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(229, 231, 235, 0.9);
  margin-bottom: 10px;
  font-size: 14px;
}

.feature-list i {
  color: #a855f7;
  font-size: 16px;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #a855f7;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.feature-link:hover {
  gap: 15px;
  color: #ec4899;
}

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

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

@media (max-width: 1200px) {
  .hero-title-new {
    font-size: 48px;
  }
  
  .card-3 {
    display: none;
  }
  
  .features-swiper {
    padding-bottom: 50px;
  }
}

@media (max-width: 768px) {
  .hero-new {
    min-height: auto;
    padding: 80px 0 60px;
  }
  
  .hero-title-new {
    font-size: 36px;
  }
  
  .hero-description-new {
    font-size: 16px;
  }
  
  .hero-image-wrapper {
    height: 400px;
  }
  
  .hero-image-card {
    width: 250px;
    height: 300px;
  }
  
  .card-2 {
    left: 100px;
  }
  
  .section-title-new {
    font-size: 32px;
  }
  
  .features-swiper {
    padding-bottom: 50px;
  }
  
  .features-button-prev,
  .features-button-next {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .features-button-prev::after,
  .features-button-next::after {
    font-size: 14px;
  }
  
  .features-button-prev {
    left: 5px;
  }
  
  .features-button-next {
    right: 5px;
  }
}

/*--------------------------------------------------------------
# New Feature Details Section
--------------------------------------------------------------*/
.feature-details-new {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0a1a 0%, #2d1b3d 100%);
  overflow: hidden;
}

.feature-details-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.details-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 30% 40%, rgba(168, 85, 247, 0.2), transparent),
    radial-gradient(2px 2px at 70% 60%, rgba(236, 72, 153, 0.2), transparent);
  background-size: 150% 150%;
  animation: detailsParticleMove 25s ease-in-out infinite;
  opacity: 0.4;
}

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

.details-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.05) 50%, transparent);
  animation: detailsLineMove 15s linear infinite;
}

@keyframes detailsLineMove {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.feature-details-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.detail-card-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: rgba(22, 27, 34, 0.6);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.detail-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #a855f7, #ec4899);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.detail-card-new:hover::before {
  transform: scaleX(1);
}

.detail-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(168, 85, 247, 0.3);
  border-color: rgba(168, 85, 247, 0.4);
}

.detail-card-new.reverse {
  direction: rtl;
}

.detail-card-new.reverse > * {
  direction: ltr;
}

.detail-card-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
}

.detail-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.detail-card-new:hover .detail-card-image img {
  transform: scale(1.1);
}

.detail-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #a855f7 0%, #db2777 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
  transition: all 0.4s ease;
  z-index: 2;
}

.detail-card-new:hover .detail-card-badge {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.6);
}

.detail-card-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.detail-subtitle {
  font-size: 18px;
  color: #a855f7;
  font-style: italic;
  margin-bottom: 20px;
  font-weight: 500;
}

.detail-card-content p {
  color: rgba(229, 231, 235, 0.9);
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 20px;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: rgba(229, 231, 235, 0.9);
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.6;
}

.detail-list i {
  color: #a855f7;
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

/*--------------------------------------------------------------
# New Success Stories Section
--------------------------------------------------------------*/
.success-stories-new {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0f1419 0%, #2d1b3d 100%);
  overflow: hidden;
}

.success-stories-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.success-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(168, 85, 247, 0.1), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.1), transparent 50%);
  animation: successPatternMove 20s ease-in-out infinite;
}

@keyframes successPatternMove {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(5deg); }
}

.success-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  animation: successGlowMove 20s ease-in-out infinite;
}

.glow-1 {
  width: 400px;
  height: 400px;
  background: rgba(168, 85, 247, 0.4);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.glow-2 {
  width: 300px;
  height: 300px;
  background: rgba(236, 72, 153, 0.4);
  bottom: 20%;
  right: 15%;
  animation-delay: 10s;
}

@keyframes successGlowMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -50px) scale(1.2); }
}

.success-stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.success-card-new {
  background: rgba(22, 27, 34, 0.6);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 20px;
  padding: 35px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.success-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #a855f7, #ec4899);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.success-card-new:hover::before {
  transform: scaleX(1);
}

.success-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(168, 85, 247, 0.3);
  border-color: rgba(168, 85, 247, 0.4);
}

.success-card-new.featured {
  border-color: rgba(168, 85, 247, 0.3);
  background: rgba(168, 85, 247, 0.05);
}

.success-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.success-icon-new {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #a855f7 0%, #db2777 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
  transition: all 0.4s ease;
}

.success-card-new:hover .success-icon-new {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.6);
}

.success-quote-icon {
  font-size: 40px;
  color: rgba(168, 85, 247, 0.2);
  opacity: 0.5;
}

.success-card-new h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.success-description-new {
  color: rgba(229, 231, 235, 0.9);
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 25px;
  font-style: italic;
}

.success-author-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(168, 85, 247, 0.1);
}

.author-info strong {
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.author-info span {
  color: rgba(229, 231, 235, 0.7);
  font-size: 14px;
}

.success-rating {
  display: flex;
  gap: 3px;
}

.success-rating i {
  color: #a855f7;
  font-size: 16px;
}

.success-cta {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 40px;
  background: rgba(22, 27, 34, 0.6);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.success-cta h3 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.success-cta p {
  color: rgba(229, 231, 235, 0.8);
  font-size: 18px;
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# New Testimonials Section
--------------------------------------------------------------*/
.testimonials-new {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0a1a 0%, #2d1b3d 100%);
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.testimonials-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, rgba(168, 85, 247, 0.03) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(168, 85, 247, 0.03) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(236, 72, 153, 0.03) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(236, 72, 153, 0.03) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
  animation: testimonialsPatternMove 30s linear infinite;
}

@keyframes testimonialsPatternMove {
  0% { background-position: 0 0, 0 30px, 30px -30px, -30px 0px; }
  100% { background-position: 60px 60px, 60px 90px, 90px 30px, 30px 60px; }
}

.testimonials-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.test-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: testShapeFloat 25s ease-in-out infinite;
}

.test-shape.shape-1 {
  width: 300px;
  height: 300px;
  background: rgba(168, 85, 247, 0.4);
  top: 20%;
  left: 5%;
  animation-delay: 0s;
}

.test-shape.shape-2 {
  width: 250px;
  height: 250px;
  background: rgba(236, 72, 153, 0.4);
  bottom: 30%;
  right: 10%;
  animation-delay: 8s;
}

.test-shape.shape-3 {
  width: 200px;
  height: 200px;
  background: rgba(168, 85, 247, 0.3);
  top: 60%;
  left: 50%;
  animation-delay: 16s;
}

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

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

.testimonial-card-new {
  background: rgba(22, 27, 34, 0.6);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.testimonial-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #a855f7, #ec4899);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonial-card-new:hover::before {
  transform: scaleX(1);
}

.testimonial-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(168, 85, 247, 0.3);
  border-color: rgba(168, 85, 247, 0.4);
}

.testimonial-image-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
}

.testimonial-img-new {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(168, 85, 247, 0.3);
  transition: all 0.4s ease;
}

.testimonial-card-new:hover .testimonial-img-new {
  border-color: #a855f7;
  transform: scale(1.1);
}

.testimonial-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #a855f7 0%, #db2777 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  border: 3px solid #0f0a1a;
  box-shadow: 0 2px 10px rgba(168, 85, 247, 0.4);
}

.testimonial-content-new {
  text-align: center;
}

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

.testimonial-stars i {
  color: #a855f7;
  font-size: 18px;
}

.testimonial-text {
  color: rgba(229, 231, 235, 0.9);
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 25px;
  position: relative;
  padding: 0 10px;
}

.quote-left,
.quote-right {
  position: absolute;
  font-size: 40px;
  color: rgba(168, 85, 247, 0.2);
  opacity: 0.5;
}

.quote-left {
  top: -10px;
  left: -5px;
}

.quote-right {
  bottom: -20px;
  right: -5px;
}

.testimonial-author-new h4 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

.testimonial-author-new span {
  color: rgba(229, 231, 235, 0.7);
  font-size: 14px;
}

@media (max-width: 1200px) {
  .detail-card-new {
    grid-template-columns: 1fr;
  }
  
  .detail-card-new.reverse {
    direction: ltr;
  }
  
  .success-stories-grid,
  .testimonials-grid-new {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .feature-details-new,
  .success-stories-new,
  .testimonials-new {
    padding: 60px 0;
  }
  
  .detail-card-new {
    padding: 25px;
  }
  
  .detail-card-content h3 {
    font-size: 24px;
  }
  
  .success-stories-grid,
  .testimonials-grid-new {
    grid-template-columns: 1fr;
  }
  
  .success-cta h3 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing-new {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0f1419 0%, #2d1b3d 100%);
  overflow: hidden;
}

.pricing-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.pricing-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.05), transparent 70%);
  animation: pricingPatternMove 20s ease-in-out infinite;
}

@keyframes pricingPatternMove {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.7; }
}

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

.pricing-card {
  background: rgba(22, 27, 34, 0.6);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #a855f7, #ec4899);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(168, 85, 247, 0.3);
  border-color: rgba(168, 85, 247, 0.4);
}

.pricing-card.featured {
  border-color: rgba(168, 85, 247, 0.3);
  background: rgba(168, 85, 247, 0.05);
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #a855f7 0%, #db2777 100%);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
}

.pricing-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.pricing-price {
  margin-bottom: 15px;
}

.price-amount {
  font-size: 48px;
  font-weight: 800;
  color: #a855f7;
  line-height: 1;
}

.price-period {
  display: block;
  font-size: 14px;
  color: rgba(229, 231, 235, 0.7);
  margin-top: 5px;
}

.pricing-description {
  color: rgba(229, 231, 235, 0.8);
  font-size: 15px;
  margin-bottom: 10px;
}

.pricing-savings {
  display: inline-block;
  background: rgba(168, 85, 247, 0.2);
  color: #a855f7;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 10px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(229, 231, 235, 0.9);
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.6;
}

.pricing-features i.bi-check-circle-fill {
  color: #a855f7;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.pricing-features i.bi-x-circle {
  color: rgba(229, 231, 235, 0.4);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 12px;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.pricing-btn:hover {
  background: rgba(168, 85, 247, 0.1);
  border-color: #a855f7;
  transform: translateY(-2px);
}

.pricing-btn.primary {
  background: linear-gradient(135deg, #a855f7 0%, #db2777 100%);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

.pricing-btn.primary:hover {
  background: linear-gradient(135deg, #db2777 0%, #a855f7 100%);
  box-shadow: 0 6px 30px rgba(168, 85, 247, 0.5);
}

.pricing-note {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 20px;
  background: rgba(22, 27, 34, 0.6);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.pricing-note p {
  color: rgba(229, 231, 235, 0.8);
  font-size: 14px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pricing-note i {
  color: #a855f7;
  font-size: 18px;
}

/*--------------------------------------------------------------
# Comparison Table Section
--------------------------------------------------------------*/
.comparison-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0a1a 0%, #2d1b3d 100%);
}

.comparison-table-wrapper {
  position: relative;
  z-index: 2;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(22, 27, 34, 0.6);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(168, 85, 247, 0.1);
}

.comparison-table thead {
  background: rgba(168, 85, 247, 0.1);
}

.comparison-table th {
  padding: 20px;
  text-align: left;
  font-weight: 700;
  color: #ffffff;
  font-size: 16px;
  border-bottom: 2px solid rgba(168, 85, 247, 0.2);
}

.comparison-table th:first-child {
  background: rgba(168, 85, 247, 0.15);
}

.comparison-table td {
  padding: 18px 20px;
  color: rgba(229, 231, 235, 0.9);
  font-size: 15px;
  border-bottom: 1px solid rgba(168, 85, 247, 0.05);
  transition: background 0.3s ease;
}

.comparison-table tbody tr:hover td {
  background: rgba(168, 85, 247, 0.05);
}

.comparison-table td:first-child {
  font-weight: 600;
  color: #ffffff;
  background: rgba(168, 85, 247, 0.05);
}

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

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .comparison-table {
    font-size: 14px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 12px 10px;
  }
}

/* Company Info Styles */
.company-info {
  background: rgba(22, 27, 34, 0.6);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 12px;
  padding: 30px;
  backdrop-filter: blur(10px);
  margin-bottom: 30px;
}

.company-info p {
  color: rgba(229, 231, 235, 0.9);
  margin-bottom: 15px;
  line-height: 1.8;
  font-size: 15px;
}

.company-info strong {
  color: #ffffff;
  font-weight: 600;
}

.company-info h3 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(168, 85, 247, 0.2);
}

/*--------------------------------------------------------------
# About Page Styles
--------------------------------------------------------------*/
.about-new {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0a1a 0%, #2d1b3d 100%);
  overflow: hidden;
}

.about-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.about-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(168, 85, 247, 0.05), transparent 60%);
  animation: aboutPatternMove 25s ease-in-out infinite;
}

@keyframes aboutPatternMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.1); }
}

.story-card {
  background: rgba(22, 27, 34, 0.6);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  height: 100%;
}

.story-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(168, 85, 247, 0.2);
  border-color: rgba(168, 85, 247, 0.3);
}

.story-year {
  display: inline-block;
  background: linear-gradient(135deg, #a855f7 0%, #db2777 100%);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.story-card h3 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.story-card p {
  color: rgba(229, 231, 235, 0.9);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.company-info-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0f2e 0%, #0f0a1a 100%);
}

.info-card {
  background: rgba(22, 27, 34, 0.6);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 20px;
  padding: 0;
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(168, 85, 247, 0.2);
  border-color: rgba(168, 85, 247, 0.3);
}

.info-card-header {
  background: rgba(168, 85, 247, 0.1);
  padding: 25px 30px;
  border-bottom: 1px solid rgba(168, 85, 247, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
}

.info-card-header i {
  font-size: 28px;
  color: #a855f7;
}

.info-card-header h3 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.info-card-content {
  padding: 30px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid rgba(168, 85, 247, 0.05);
}

.info-row:last-child {
  border-bottom: none;
}

.info-row strong {
  color: #ffffff;
  font-weight: 600;
  min-width: 150px;
}

.info-row span {
  color: rgba(229, 231, 235, 0.9);
  text-align: right;
  flex: 1;
}

.mission-new {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0f1419 0%, #2d1b3d 100%);
  overflow: hidden;
}

.mission-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.mission-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(236, 72, 153, 0.05), transparent 60%);
  animation: missionPatternMove 30s ease-in-out infinite;
}

@keyframes missionPatternMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 20px) scale(1.1); }
}

.mission-card {
  background: rgba(22, 27, 34, 0.6);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  z-index: 2;
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(236, 72, 153, 0.2);
  border-color: rgba(236, 72, 153, 0.3);
}

.mission-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ec4899 0%, #a855f7 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.mission-icon i {
  font-size: 32px;
  color: #ffffff;
}

.mission-card h3 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.mission-card p {
  color: rgba(229, 231, 235, 0.9);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.why-choose-new {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0f2e 0%, #0f0a1a 100%);
}

.feature-box-new {
  background: rgba(22, 27, 34, 0.6);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  height: 100%;
  text-align: center;
}

.feature-box-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(168, 85, 247, 0.2);
  border-color: rgba(168, 85, 247, 0.3);
}

.feature-box-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #a855f7 0%, #db2777 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: transform 0.3s ease;
}

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

.feature-box-icon i {
  font-size: 36px;
  color: #ffffff;
}

.feature-box-new h4 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.feature-box-new p {
  color: rgba(229, 231, 235, 0.9);
  font-size: 15px;
  line-height: 1.8;
}

/*--------------------------------------------------------------
# Contact Page Styles
--------------------------------------------------------------*/
.contact-form-new {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0a1a 0%, #2d1b3d 100%);
  overflow: hidden;
}

.contact-form-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.contact-form-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.05), transparent 70%);
  animation: contactPatternMove 20s ease-in-out infinite;
}

@keyframes contactPatternMove {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(5deg); }
}

/* New contact form styles (migrated from contact-form-modern) */
#lead.contact-form-new {
  background: rgba(22, 27, 34, 0.6);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 20px;
  padding: 50px;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
  margin-top: 30px;
}

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

.form-label-new {
  display: block;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 15px;
}

.form-label-new .required-star {
  color: #ec4899;
  margin-left: 4px;
}

.form-input-new,
.form-textarea-new {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 12px;
  color: #ffffff;
  font-size: 15px;
  transition: all 0.3s ease;
  font-family: 'Xanh Mono', monospace;
}

.form-input-new:focus,
.form-textarea-new:focus {
  outline: none;
  border-color: #a855f7;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.form-input-new::placeholder,
.form-textarea-new::placeholder {
  color: rgba(229, 231, 235, 0.5);
}

.form-input-new.is-invalid,
.form-textarea-new.is-invalid {
  border-color: #ec4899;
  background: rgba(236, 72, 153, 0.05);
}

.form-input-new.is-valid,
.form-textarea-new.is-valid {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.05);
}

.invalid-feedback {
  display: none;
  color: #ec4899;
  font-size: 13px;
  margin-top: 8px;
  font-family: 'Xanh Mono', monospace;
}

.form-input-new.is-invalid ~ .invalid-feedback,
.form-textarea-new.is-invalid ~ .invalid-feedback {
  display: block;
}

.form-submit-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #a855f7 0%, #db2777 100%);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Xanh Mono', monospace;
  margin-top: 10px;
}

.form-submit-button svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  transition: transform 0.3s ease;
}

.form-submit-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.form-submit-button:hover:not(:disabled) svg {
  transform: translateX(3px);
}

.form-submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

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

.form-status .loading,
.form-status .error-message,
.form-status .sent-message {
  display: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Xanh Mono', monospace;
}

.form-status .loading {
  display: block;
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.form-status .error-message {
  background: rgba(236, 72, 153, 0.1);
  color: #ec4899;
  border: 1px solid rgba(236, 72, 153, 0.3);
}

.form-status .sent-message {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.contact-info-new {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0f2e 0%, #0f0a1a 100%);
}

.contact-card-new {
  background: rgba(22, 27, 34, 0.6);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  height: 100%;
  text-align: center;
}

.contact-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(168, 85, 247, 0.2);
  border-color: rgba(168, 85, 247, 0.3);
}

.contact-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #a855f7 0%, #db2777 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: transform 0.3s ease;
}

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

.contact-card-icon i {
  font-size: 36px;
  color: #ffffff;
}

.contact-card-new h4 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-card-new p {
  color: rgba(229, 231, 235, 0.9);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.contact-note {
  color: rgba(229, 231, 235, 0.6) !important;
  font-size: 14px !important;
  margin-bottom: 20px !important;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a855f7;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #db2777;
  gap: 12px;
}

.faq-preview-new {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0f1419 0%, #2d1b3d 100%);
  overflow: hidden;
}

.faq-preview-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.faq-preview-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 70%, rgba(236, 72, 153, 0.05), transparent 60%);
  animation: faqPreviewPatternMove 25s ease-in-out infinite;
}

@keyframes faqPreviewPatternMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.1); }
}

.faq-preview-card {
  background: rgba(22, 27, 34, 0.6);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 20px;
  padding: 35px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  z-index: 2;
}

.faq-preview-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(168, 85, 247, 0.2);
  border-color: rgba(168, 85, 247, 0.3);
}

.faq-preview-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #a855f7 0%, #db2777 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.faq-preview-icon i {
  font-size: 28px;
  color: #ffffff;
}

.faq-preview-card h4 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.faq-preview-card p {
  color: rgba(229, 231, 235, 0.9);
  font-size: 15px;
  line-height: 1.8;
}

.btn-faq-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #a855f7 0%, #db2777 100%);
  border-radius: 12px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-faq-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
  color: #ffffff;
}

/*--------------------------------------------------------------
# FAQ Page Styles
--------------------------------------------------------------*/
.faq-new {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0a1a 0%, #2d1b3d 100%);
  overflow: hidden;
}

.faq-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.faq-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.05), transparent 70%);
  animation: faqPatternMove 20s ease-in-out infinite;
}

@keyframes faqPatternMove {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(-5deg); }
}

.faq-container-new {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-item-new {
  background: rgba(22, 27, 34, 0.6);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.faq-item-new:hover {
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.1);
}

.faq-item-new.faq-active {
  border-color: rgba(168, 85, 247, 0.4);
}

.faq-header-new {
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-header-new:hover {
  background: rgba(168, 85, 247, 0.05);
}

.faq-icon-new {
  font-size: 24px;
  color: #a855f7;
  flex-shrink: 0;
}

.faq-header-new h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.faq-toggle-new {
  font-size: 20px;
  color: #a855f7;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item-new.faq-active .faq-toggle-new {
  transform: rotate(180deg);
}

.faq-content-new {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 30px;
}

.faq-item-new.faq-active .faq-content-new {
  max-height: 500px;
  padding: 0 30px 25px 85px;
}

.faq-content-new p {
  color: rgba(229, 231, 235, 0.9);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.additional-faq-new {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0f2e 0%, #0f0a1a 100%);
}

.info-card-faq {
  background: rgba(22, 27, 34, 0.6);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 20px;
  padding: 35px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  height: 100%;
}

.info-card-faq:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(168, 85, 247, 0.2);
  border-color: rgba(168, 85, 247, 0.3);
}

.info-icon-faq {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #a855f7 0%, #db2777 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.info-icon-faq i {
  font-size: 28px;
  color: #ffffff;
}

.info-card-faq h4 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.info-card-faq p {
  color: rgba(229, 231, 235, 0.9);
  font-size: 15px;
  line-height: 1.8;
}

.faq-cta-text {
  color: rgba(229, 231, 235, 0.9);
  font-size: 18px;
  margin-bottom: 25px;
}

.btn-faq-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #a855f7 0%, #db2777 100%);
  border-radius: 12px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-faq-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
  color: #ffffff;
}

@media (max-width: 768px) {
  #lead.contact-form-new {
    padding: 30px 20px;
  }
  
  .form-submit-button {
    width: 100%;
    justify-content: center;
  }
  
  .info-row {
    flex-direction: column;
    gap: 10px;
  }
  
  .info-row span {
    text-align: left;
  }
  
  .faq-item-new.faq-active .faq-content-new {
    padding: 0 20px 20px 20px;
  }
}

/*--------------------------------------------------------------
# Legal Pages Styles (Cookie, Privacy, Terms)
--------------------------------------------------------------*/
.legal-content-new {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0a1a 0%, #2d1b3d 100%);
  overflow: hidden;
}

.legal-content-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.legal-content-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.03), transparent 70%);
  animation: legalPatternMove 25s ease-in-out infinite;
}

@keyframes legalPatternMove {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(5deg); }
}

.legal-card {
  background: rgba(22, 27, 34, 0.6);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 20px;
  padding: 60px 50px;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

.legal-card h2 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.legal-intro {
  color: rgba(229, 231, 235, 0.8);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.legal-section {
  margin-bottom: 50px;
}

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

.legal-section h3 {
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.legal-section h3 i {
  color: #a855f7;
  font-size: 28px;
}

.legal-section p {
  color: rgba(229, 231, 235, 0.9);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.legal-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(229, 231, 235, 0.9);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-list i.bi-check-circle {
  color: #a855f7;
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.legal-list i.bi-x-circle {
  color: rgba(229, 231, 235, 0.5);
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.cookie-type-card {
  background: rgba(168, 85, 247, 0.05);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.cookie-type-card:hover {
  background: rgba(168, 85, 247, 0.08);
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateX(5px);
}

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

.cookie-type-header i {
  font-size: 28px;
  color: #a855f7;
}

.cookie-type-header h4 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.cookie-type-card p {
  color: rgba(229, 231, 235, 0.9);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.contact-box {
  background: rgba(168, 85, 247, 0.05);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 12px;
  padding: 25px;
  margin-top: 20px;
}

.contact-box p {
  color: rgba(229, 231, 235, 0.9);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
}

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

.contact-box a {
  color: #a855f7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-box a:hover {
  color: #db2777;
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Thanks Page Styles
--------------------------------------------------------------*/
.thanks-icon-wrapper {
  margin-bottom: 30px;
}

.thanks-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #a855f7 0%, #db2777 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: thanksIconPulse 2s ease-in-out infinite;
}

@keyframes thanksIconPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.7); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(168, 85, 247, 0); }
}

.thanks-icon i {
  font-size: 60px;
  color: #ffffff;
}

.next-steps-new {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0f2e 0%, #0f0a1a 100%);
}

.step-card {
  background: rgba(22, 27, 34, 0.6);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  height: 100%;
  text-align: center;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(168, 85, 247, 0.2);
  border-color: rgba(168, 85, 247, 0.3);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #a855f7 0%, #db2777 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: transform 0.3s ease;
}

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

.step-icon i {
  font-size: 36px;
  color: #ffffff;
}

.step-card h4 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.step-card p {
  color: rgba(229, 231, 235, 0.9);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.step-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a855f7;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.step-link:hover {
  color: #db2777;
  gap: 12px;
}

@media (max-width: 768px) {
  .legal-card {
    padding: 40px 25px;
  }
  
  .legal-card h2 {
    font-size: 28px;
  }
  
  .legal-section h3 {
    font-size: 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .thanks-icon {
    width: 100px;
    height: 100px;
  }
  
  .thanks-icon i {
    font-size: 50px;
  }
}
