/* Fonts */
:root {
  --default-font: "Crimson Text", serif;
  --heading-font: "Crimson Text", serif;
  --nav-font: "Crimson Text", serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
--accent-color: #8B5CF6;
--bg-color: #ffffff;
--nav-color: #7C3AED;
--background-color: #F5F3FF;
--surface-color: #ffffff;
--default-color: #6366F1;
--heading-color: #4C1D95;
--contrast-color: #6B7280;
--nav-hover-color: #A78BFA;
--nav-mobile-background-color: #C4B5FD;
--nav-dropdown-background-color: #ffffff;
--nav-dropdown-color: #4C1D95;
--nav-dropdown-hover-color: #8B5CF6;
--dark-purple: #5B21B6;
--light-purple: #A78BFA;
--dark-pink: #BE185D;
--light-blue: #60A5FA;
--gradient-primary: linear-gradient(135deg, #8B5CF6 0%, #6366F1 50%, #EC4899 100%);
--gradient-secondary: linear-gradient(135deg, #7C3AED 0%, #60A5FA 50%, #BE185D 100%);
--gradient-hero: linear-gradient(135deg, #5B21B6 0%, #6366F1 30%, #EC4899 70%, #8B5CF6 100%);
}





/* Light background text styling - Updated */
.light-background {
  background: linear-gradient(135deg, #FDF4FF 0%, #F5F3FF 50%, #EDE9FE 100%);
  position: relative;
}

.light-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
  z-index: 1;
}

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

.light-background h1,
.light-background h2,
.light-background h3,
.light-background h4,
.light-background h5,
.light-background h6 {
  color: var(--heading-color) !important;
}

.light-background p,
.light-background li,
.light-background span {
  color: var(--contrast-color) !important;
}

.light-background .content {
  color: var(--contrast-color) !important;
}

.light-background .section-title h2 {
  color: var(--heading-color) !important;
}

.light-background .section-title p {
  color: var(--contrast-color) !important;
}




/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--heading-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #10B981;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--heading-color);
  background-color: var(--bg-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

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

  .header .navmenu {
    order: 3;
  }
}

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

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

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

  .navmenu li {
    position: relative;
  }

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

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

  .navmenu li a {
    border-bottom: 2px solid transparent;
    margin: 0 1rem;
    border-radius: 4px;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background-color: rgba(139, 92, 246, 0.1);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 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;
  }
}




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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero .download-btn {
  color: var(--contrast-color);
  background: linear-gradient(135deg, var(--accent-color), var(--default-color));
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 30px 10px 30px;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

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

.hero .download-btn:hover {
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.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 ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  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;
  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 - Complete Redesign 2024
--------------------------------------------------------------*/
#features {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 50%, #e0c3fc 100%);
  background-size: 200% 200%;
  animation: featuresBgShift 10s ease infinite;
  color: var(--heading-color);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

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

#features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(240, 147, 251, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(79, 172, 254, 0.1) 0%, transparent 60%);
  animation: featuresGlow 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes featuresGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.9; }
}

#features::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(102, 126, 234, 0.02) 10px,
      rgba(102, 126, 234, 0.02) 20px
    );
  animation: featuresGrid 25s linear infinite;
  z-index: 1;
}

@keyframes featuresGrid {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(50px, 50px) rotate(360deg); }
}

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

/* Features Images */
.features-image-container {
  position: relative;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.features-image-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(139, 92, 246, 0.25);
}

.features-main-img,
.features-secondary-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.features-image-container:hover .features-main-img,
.features-image-container:hover .features-secondary-img {
  transform: scale(1.1);
}

.features-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.8), rgba(236, 72, 153, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.features-image-container:hover .features-image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: var(--bg-color);
}

.overlay-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.overlay-content p {
  font-size: 1rem;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

.features .icon-box {
  background: rgba(139, 92, 246, 0.1);
  border: 2px solid var(--accent-color);
  border-radius: 1rem;
  padding: 0.5rem 0;
  backdrop-filter: blur(10px);
}

.features .icon-box:hover {
  border-color: var(--default-color);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
  transform: translateY(-3px);
  background: rgba(139, 92, 246, 0.2);
}

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

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

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

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

/*--------------------------------------------------------------
# Feature Details Section
--------------------------------------------------------------*/
.feature-details .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

.feature-text {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

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


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

/* Styles pour le bloc Témoignages */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0fdfa, #e6fffa);
  position: relative;
}



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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Pricing Section - Complete Redesign
--------------------------------------------------------------*/
.pricing {
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 25%, #24243e 50%, #1a1a2e 75%, #16213e 100%);
  background-size: 400% 400%;
  animation: pricingDarkBgShift 20s ease infinite;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

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

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(240, 147, 251, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(79, 172, 254, 0.1) 0%, transparent 60%);
  animation: pricingDarkGlow 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes pricingDarkGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

.pricing::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(102, 126, 234, 0.03) 20px,
      rgba(102, 126, 234, 0.03) 40px
    );
  animation: pricingDarkGrid 40s linear infinite;
  z-index: 1;
}

@keyframes pricingDarkGrid {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(80px, 80px) rotate(360deg); }
}

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

/* Override light-background for pricing section - Dark Theme */
.pricing.section.light-background {
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 25%, #24243e 50%, #1a1a2e 75%, #16213e 100%) !important;
  background-size: 400% 400% !important;
  animation: pricingDarkBgShift 20s ease infinite !important;
}

.pricing.section.light-background::before {
  background: 
    radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(240, 147, 251, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(79, 172, 254, 0.1) 0%, transparent 60%) !important;
  animation: pricingDarkGlow 6s ease-in-out infinite !important;
}

.pricing.section.light-background::after {
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(102, 126, 234, 0.03) 20px,
      rgba(102, 126, 234, 0.03) 40px
    ) !important;
  animation: pricingDarkGrid 40s linear infinite !important;
}

/* Dark theme styles for pricing section titles */
.pricing.section .section-title,
.pricing.section .section-title h2 {
  color: rgba(255, 255, 255, 0.98) !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.pricing.section .section-description,
.pricing.section .section-description p {
  color: rgba(255, 255, 255, 0.85) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pricing.section .section-badge {
  background: rgba(102, 126, 234, 0.2) !important;
  backdrop-filter: blur(20px) !important;
  border: 2px solid rgba(102, 126, 234, 0.4) !important;
  color: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 
    0 10px 40px rgba(102, 126, 234, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.pricing.section .text-gradient {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6347 100%) !important;
  background-size: 200% 200% !important;
  animation: pricingTextGradient 3s ease infinite !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6)) !important;
}

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

/* Dark theme styles for pricing section titles */
.pricing.section .section-title,
.pricing.section .section-title h2 {
  color: rgba(255, 255, 255, 0.98) !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.pricing.section .section-description,
.pricing.section .section-description p {
  color: rgba(255, 255, 255, 0.85) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pricing.section .section-badge {
  background: rgba(102, 126, 234, 0.2);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(102, 126, 234, 0.4);
  color: rgba(255, 255, 255, 0.95);
  box-shadow: 
    0 10px 40px rgba(102, 126, 234, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pricing.section .text-gradient {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6347 100%);
  background-size: 200% 200%;
  animation: pricingTextGradient 3s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
}

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

.pricing .pricing-item {
  background: linear-gradient(135deg, rgba(30, 30, 50, 0.95) 0%, rgba(20, 20, 40, 0.98) 100%);
  backdrop-filter: blur(25px);
  padding: 50px 35px;
  box-shadow: 
    0 25px 70px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  height: 100%;
  position: relative;
  border-radius: 30px;
  border: 3px solid rgba(102, 126, 234, 0.3);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.pricing .pricing-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 200% 100%;
  animation: pricingTopBorder 3s ease infinite;
  transform: scaleX(0);
  transition: transform 0.6s ease;
  z-index: 1;
}

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

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

.pricing .pricing-item::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
}

.pricing .pricing-item:hover::after {
  opacity: 1;
}

.pricing .pricing-item:hover {
  transform: translateY(-25px) scale(1.05) rotateY(2deg);
  box-shadow: 
    0 50px 120px rgba(102, 126, 234, 0.6),
    0 0 0 4px rgba(102, 126, 234, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(102, 126, 234, 0.8);
}

.pricing h3 {
  font-weight: 800;
  margin-bottom: 20px;
  font-size: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 200% 200%;
  animation: pricingTitleGradient 4s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
}

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

.pricing h4 {
  font-size: 4rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 200% 200%;
  animation: pricingPriceGradient 3s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--heading-font);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.6));
}

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

.pricing h4 sup {
  font-size: 2rem;
  font-weight: 700;
}

.pricing h4 span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  font-weight: 500;
}

.pricing ul {
  padding: 30px 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
  line-height: 1.9;
}

.pricing ul li {
  padding: 14px 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.pricing ul li:hover {
  color: rgba(255, 255, 255, 1);
  transform: translateX(5px);
}

.pricing ul i {
  color: #10B981;
  font-size: 1.4rem;
  margin-top: 2px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.6));
  animation: checkIconPulse 2s ease-in-out infinite;
}

@keyframes checkIconPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.6)); }
  50% { transform: scale(1.1); filter: drop-shadow(0 0 12px rgba(16, 185, 129, 0.9)); }
}

.pricing ul .bi-x {
  color: #EF4444;
  filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.6));
}

.pricing ul .na {
  color: rgba(255, 255, 255, 0.4);
  opacity: 0.6;
}

.pricing ul .na i {
  color: rgba(255, 255, 255, 0.3);
  opacity: 0.5;
}

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

.pricing .buy-btn {
  color: #ffffff;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 200% 200%;
  animation: pricingBtnGradient 3s ease infinite;
  display: inline-block;
  padding: 18px 45px;
  border: 3px solid rgba(102, 126, 234, 0.5);
  font-size: 1.15rem;
  font-weight: 800;
  font-family: var(--heading-font);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 50px;
  box-shadow: 
    0 15px 40px rgba(102, 126, 234, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.pricing .buy-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.pricing .buy-btn:hover::before {
  width: 400px;
  height: 400px;
}

.pricing .buy-btn:hover {
  transform: translateY(-8px) scale(1.08);
  box-shadow: 
    0 25px 60px rgba(102, 126, 234, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border-color: rgba(102, 126, 234, 0.8);
  animation: pricingBtnGradient 1s ease infinite;
}

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

.pricing .featured .pricing-item {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 50%, rgba(240, 147, 251, 0.3) 100%);
  background-size: 200% 200%;
  animation: featuredCardGradient 4s ease infinite;
  box-shadow: 
    0 30px 90px rgba(102, 126, 234, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 0 4px rgba(102, 126, 234, 0.4);
  border-color: rgba(102, 126, 234, 0.6);
  transform: scale(1.08);
  position: relative;
}

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

.pricing .featured .pricing-item::before {
  height: 8px;
  background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FF6347 100%);
  animation: featuredTopBorder 2s ease infinite;
}

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

.pricing .featured .pricing-item:hover {
  transform: translateY(-30px) scale(1.12) rotateY(3deg);
  box-shadow: 
    0 60px 150px rgba(102, 126, 234, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 0 0 6px rgba(102, 126, 234, 0.6);
}

.pricing .featured h3,
.pricing .featured h4 {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6347 100%);
  background-size: 200% 200%;
  animation: featuredTitleGradient 3s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.8));
}

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

.pricing .featured h4 span {
  color: rgba(255, 255, 255, 0.9);
}

.pricing .featured ul,
.pricing .featured ul li {
  color: rgba(255, 255, 255, 0.95);
}

.pricing .featured ul i {
  color: #FFD700;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

.pricing .featured .buy-btn {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6347 100%);
  background-size: 200% 200%;
  animation: featuredBtnGradient 2s ease infinite;
  border: 3px solid rgba(255, 215, 0, 0.6);
  color: #0f0c29;
  font-weight: 900;
  box-shadow: 
    0 20px 50px rgba(255, 215, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

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

.pricing .featured .buy-btn:hover {
  box-shadow: 
    0 30px 70px rgba(255, 215, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 215, 0, 0.9);
  animation: featuredBtnGradient 0.8s ease infinite;
}

.pricing-badge {
  position: absolute;
  top: -18px;
  right: 25px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6347 100%);
  background-size: 200% 200%;
  animation: badgeGradient 2s ease infinite;
  color: #0f0c29;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 
    0 8px 25px rgba(255, 215, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 215, 0, 0.5);
  z-index: 10;
}

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

.pricing-item {
  position: relative;
}

.pricing-save {
  font-size: 0.9rem;
  color: #FFD700;
  font-weight: 700;
  margin-top: -10px;
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
  animation: saveTextPulse 2s ease-in-out infinite;
}

@keyframes saveTextPulse {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 1; }
}

.pricing .text-muted {
  color: rgba(255, 255, 255, 0.6) !important;
}

.pricing-comparison {
  background: linear-gradient(135deg, rgba(30, 30, 50, 0.95) 0%, rgba(20, 20, 40, 0.98) 100%);
  backdrop-filter: blur(25px);
  padding: 50px;
  border-radius: 35px;
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 3px solid rgba(102, 126, 234, 0.4);
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.pricing-comparison::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 200% 100%;
  animation: comparisonTopBorder 3s ease infinite;
}

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

.pricing-comparison h4 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 200% 200%;
  animation: comparisonTitleGradient 4s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 35px;
  text-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
}

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

.pricing-comparison table {
  margin-bottom: 0;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}

.pricing-comparison th {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 200% 200%;
  animation: comparisonThGradient 3s ease infinite;
  color: #ffffff;
  font-weight: 800;
  text-align: center;
  padding: 25px 20px;
  font-size: 1.1rem;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.pricing-comparison th:first-child {
  border-radius: 20px 0 0 0;
  text-align: left;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 800;
}

.pricing-comparison th:last-child {
  border-radius: 0 20px 0 0;
}

.pricing-comparison td {
  text-align: center;
  padding: 20px 18px;
  vertical-align: middle;
  border-bottom: 1px solid rgba(102, 126, 234, 0.2);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.pricing-comparison td:first-child {
  text-align: left;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(102, 126, 234, 0.1);
}

.pricing-comparison tbody tr:nth-child(even) {
  background-color: rgba(102, 126, 234, 0.08);
}

.pricing-comparison tbody tr:hover {
  background-color: rgba(102, 126, 234, 0.15);
  transform: scale(1.02);
  transition: all 0.3s ease;
}

.pricing-comparison tbody tr:hover td {
  color: rgba(255, 255, 255, 1);
}

.pricing-comparison tbody tr:last-child td:first-child {
  border-radius: 0 0 0 20px;
}

.pricing-comparison tbody tr:last-child td:last-child {
  border-radius: 0 0 20px 0;
}

.pricing-comparison .bi-check-circle-fill {
  color: #10B981;
  font-size: 1.6rem;
  filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.8));
  animation: checkBounceDark 0.6s ease;
}

.pricing-comparison .bi-x-circle {
  color: #EF4444;
  font-size: 1.6rem;
  filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.8));
}

@keyframes checkBounceDark {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 3px solid rgba(139, 92, 246, 0.2);
  position: relative;
  padding: 25px 30px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
}


.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

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

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

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

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

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

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

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

.faq .faq-container .faq-active {
  background: var(--gradient-primary);
  border-color: var(--accent-color);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.4);
  transform: translateY(-5px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.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(--bg-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 .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  ;
}

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

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

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

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

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

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

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

.contact .php-email-form button[type=submit] {
  background: linear-gradient(135deg, var(--accent-color), var(--default-color));
  color: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.contact .php-email-form button[type=submit]:hover {
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

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

#cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--bg-color), var(--surface-color));
  color: var(--heading-color);
  border: 3px solid var(--accent-color);
  padding: 25px;
  font-family: "Crimson Text", serif;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
  font-size: 14px;
  max-width: 450px;
  z-index: 1000;
  display: none;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

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

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

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

#cookie-popup button {
  background: linear-gradient(135deg, var(--accent-color), var(--light-burgundy));
  color: var(--bg-color);
  border: none;
  padding: 12px 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#cookie-popup button:hover {
  background: linear-gradient(135deg, var(--light-burgundy), var(--accent-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

/* New Section Styles */





/* About Section */
.about-features {
  margin-top: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.5rem;
  color: white;
}

.feature-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.feature-content p {
  color: var(--contrast-color);
  line-height: 1.6;
}

.about-visual {
  position: relative;
  height: 400px;
}

.progress-ring {
  position: relative;
  width: 100%;
  height: 100%;
}

.ring {
  position: absolute;
  border: 3px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
  backdrop-filter: blur(10px);
}

.ring-1 {
  width: 120px;
  height: 120px;
  top: 20%;
  left: 20%;
  animation: rotate 20s linear infinite;
}

.ring-2 {
  width: 80px;
  height: 80px;
  top: 50%;
  right: 30%;
  animation: rotate 15s linear infinite reverse;
}

.ring-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 50%;
  animation: rotate 25s linear infinite;
}

.ring-content {
  text-align: center;
  color: var(--contrast-color);
}

.ring-content i {
  font-size: 1.5rem;
  color: var(--default-color);
  margin-bottom: 5px;
}

.ring-content span {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Features Section */
.feature-card {
  background: linear-gradient(135deg, var(--surface-color), var(--bg-color));
  border: 2px solid var(--accent-color);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 212, 170, 0.3);
  border-color: var(--default-color);
}

.feature-card .feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

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

.feature-card h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--contrast-color);
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  background: linear-gradient(135deg, var(--accent-color), var(--default-color));
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}



/* Contact Section */
.contact-form {
  background: linear-gradient(135deg, var(--surface-color), var(--bg-color));
  border: 2px solid var(--accent-color);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.contact-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--accent-color);
  border-radius: 10px;
  color: var(--contrast-color);
  padding: 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--default-color);
  box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
  color: var(--contrast-color);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, var(--surface-color), var(--bg-color));
  border: 2px solid var(--accent-color);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 212, 170, 0.2);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.5rem;
  color: white;
}

.contact-details h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.contact-details p {
  color: var(--contrast-color);
  margin: 0;
  line-height: 1.4;
}


/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .floating-cards .card {
    position: relative;
    margin-bottom: 20px;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
}

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

#cookie-popup .popup-message a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

#cookie-popup .popup-message a:hover {
  color: var(--light-burgundy);
  border-bottom-color: var(--light-burgundy);
  text-shadow: 0 1px 2px rgba(139, 92, 246, 0.2);
}

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

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

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

.about_elem {
  margin-bottom: 2rem;
}


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

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

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

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

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

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

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

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

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


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

.growth {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(236, 72, 153, 0.8)), url('assets/img/main.jpg');
  background-size: cover;
  background-position: center;
  color: var(--contrast-color);
  padding: 100px 0;
}

.lead  {
  color: var(--contrast-color);
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}


/* Hero Section - Complete Redesign 2024 */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  position: relative;
  overflow: hidden;
  padding: 140px 0 120px;
  min-height: 95vh;
  display: flex;
  align-items: center;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: pulseGlow 4s ease-in-out infinite;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: -200%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.03) 2px,
      rgba(255, 255, 255, 0.03) 4px
    );
  animation: gridMove 20s linear infinite;
  z-index: 1;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

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

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

.hero-content {
  position: relative;
  z-index: 3;
  animation: contentFadeIn 1s ease-out;
}

@keyframes contentFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--bg-color);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation: badgePulse 2.5s ease-in-out infinite;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

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

.hero-badge:hover::before {
  left: 100%;
}

.hero-badge:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 15px 50px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
}

@keyframes badgePulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  50% { 
    transform: scale(1.02);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--bg-color);
  margin-bottom: 30px;
  line-height: 1.1;
  text-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(255, 255, 255, 0.1);
  animation: titleSlideIn 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  letter-spacing: -1px;
}

@keyframes titleSlideIn {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.text-gradient {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 30%, #FF6347 60%, #FF1493 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  animation: gradientFlow 3s ease infinite;
  position: relative;
  display: inline-block;
}

.text-gradient::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FFD700, #FF1493);
  border-radius: 2px;
  animation: underlineExpand 1s ease-out 0.5s both;
}

@keyframes gradientFlow {
  0%, 100% { 
    background-position: 0% 50%;
    filter: hue-rotate(0deg);
  }
  50% { 
    background-position: 100% 50%;
    filter: hue-rotate(20deg);
  }
}

@keyframes underlineExpand {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 100%;
    opacity: 1;
  }
}

.hero-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.98);
  line-height: 1.9;
  margin-bottom: 25px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  animation: descSlideIn 1.4s ease-out 0.4s both;
  font-weight: 400;
}

@keyframes descSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 40px;
  animation: buttonsSlideIn 1.6s ease-out 0.8s both;
}

@keyframes buttonsSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-primary {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  border: 3px solid rgba(255, 255, 255, 0.5);
  color: var(--bg-color);
  font-weight: 700;
  font-size: 1.15rem;
  padding: 18px 40px;
  border-radius: 50px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 
    0 10px 35px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translateY(-8px) scale(1.08);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-primary:active {
  transform: translateY(-4px) scale(1.05);
}

.btn-outline-secondary {
  border: 3px solid rgba(255, 255, 255, 0.6);
  color: var(--bg-color);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  font-weight: 700;
  font-size: 1.15rem;
  padding: 18px 40px;
  border-radius: 50px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 
    0 10px 35px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-outline-secondary::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.6s;
}

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

.btn-outline-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--bg-color);
  transform: translateY(-8px) scale(1.08);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hero-cta-note {
  margin-top: 25px;
  animation: noteFadeIn 1.8s ease-out 1s both;
}

@keyframes noteFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-cta-note p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Floating Cards */
.floating-cards {
  position: relative;
  height: 400px;
  width: 100%;
}

.floating-cards .card {
  position: absolute;
  background: linear-gradient(135deg, var(--surface-color), rgba(26, 35, 50, 0.8));
  border: 2px solid var(--default-color);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-weight: 600;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: float 6s ease-in-out infinite;
}

.floating-cards .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.floating-cards .card i {
  font-size: 2rem;
  color: var(--default-color);
  margin-bottom: 10px;
}

.floating-cards .card.card-1 {
  top: 20px;
  left: 20px;
  animation-delay: 0s;
}

.floating-cards .card.card-2 {
  top: 80px;
  right: 40px;
  animation-delay: 1.5s;
}

.floating-cards .card.card-3 {
  bottom: 100px;
  left: 60px;
  animation-delay: 3s;
}

.floating-cards .card.card-4 {
  bottom: 20px;
  right: 20px;
  animation-delay: 4.5s;
}

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

/* Section Badges - Redesigned */
.section-badge {
  display: inline-flex;
  align-items: center;
  background: var(--gradient-primary);
  color: var(--bg-color);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
  animation: badgeFloat 3s ease-in-out infinite;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

.section-badge:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(139, 92, 246, 0.6);
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 25px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.section-description {
  font-size: 1.2rem;
  color: var(--contrast-color);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}

/* Feature Cards */
.feature-card, .tech-card {
  background: linear-gradient(135deg, var(--surface-color), rgba(26, 35, 50, 0.8));
  border: 2px solid var(--default-color);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

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

.feature-icon, .tech-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--default-color), var(--accent-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon i, .tech-icon i {
  font-size: 2rem;
  color: var(--bg-color);
}

.feature-card h4, .tech-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.feature-card p, .tech-card p {
  color: var(--contrast-color);
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-tags, .tech-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  background: rgba(139, 92, 246, 0.2);
  color: var(--default-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* About Features */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, var(--default-color), var(--accent-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.5rem;
  color: var(--bg-color);
}

.feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.feature-content p {
  color: var(--contrast-color);
  opacity: 0.8;
  margin: 0;
  font-size: 0.95rem;
}

/* Progress Ring */
.progress-ring {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
}

.ring {
  position: absolute;
  border: 3px solid var(--default-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate 20s linear infinite;
}

.ring-1 {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 0s;
}

.ring-2 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -7s;
}

.ring-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -14s;
}

.ring-content {
  text-align: center;
  color: var(--contrast-color);
}

.ring-content i {
  font-size: 1.5rem;
  color: var(--default-color);
  margin-bottom: 5px;
  display: block;
}

.ring-content span {
  font-size: 0.9rem;
  font-weight: 600;
}

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* FAQ Section */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 3px solid rgba(139, 92, 246, 0.2);
  border-radius: 25px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
}

.faq-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.3);
  transform: translateY(-5px);
}

.faq-item.active {
  border-color: var(--accent-color);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.4);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 243, 255, 0.95));
}

.faq-header {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
  background: transparent;
}

.faq-header:hover {
  background: rgba(139, 92, 246, 0.05);
  padding-left: 35px;
}

.faq-header h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

.faq-header i {
  font-size: 1.2rem;
  color: var(--default-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-header i {
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.faq-content p {
  color: var(--contrast-color);
  opacity: 0.9;
  line-height: 1.6;
  margin: 0;
}

/* Step Cards */
.step-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 3px solid rgba(139, 92, 246, 0.2);
  border-radius: 30px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  text-align: center;
  box-shadow: 0 15px 50px rgba(139, 92, 246, 0.15);
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

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

.step-card:hover {
  transform: translateY(-20px) scale(1.03);
  box-shadow: 0 30px 80px rgba(139, 92, 246, 0.4);
  border-color: var(--accent-color);
}

.step-card.featured {
  border-color: var(--accent-color);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 243, 255, 0.95));
}

.step-card.featured::before {
  height: 8px;
  background: var(--gradient-primary);
  transform: scaleX(1);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--bg-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
  border: 3px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
}

.step-card:hover .step-number {
  transform: rotate(360deg) scale(1.2);
}

.step-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px auto;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-card:hover .step-icon {
  transform: rotate(360deg) scale(1.15);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
}

.step-icon i {
  font-size: 2.5rem;
  color: var(--bg-color);
}

.step-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 18px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-card p {
  color: var(--contrast-color);
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.step-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.step-feature {
  background: rgba(139, 92, 246, 0.1);
  color: var(--accent-color);
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid rgba(139, 92, 246, 0.2);
  transition: all 0.3s ease;
}

.step-feature:hover {
  background: rgba(139, 92, 246, 0.2);
  transform: translateY(-3px);
  border-color: var(--accent-color);
}

/* Testimonials Section - Complete Redesign */
.testimonials {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 30%, #f093fb 60%, #4facfe 100%);
  background-size: 400% 400%;
  animation: testimonialsGradient 18s ease infinite;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

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

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
  animation: testimonialsGlow 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes testimonialsGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.9; }
}

.testimonials::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 8px,
      rgba(255, 255, 255, 0.02) 8px,
      rgba(255, 255, 255, 0.02) 16px
    );
  animation: testimonialsGrid 25s linear infinite;
  z-index: 1;
}

@keyframes testimonialsGrid {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(40px, 40px) rotate(360deg); }
}

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

.testimonials .section-title,
.testimonials .section-description {
  color: var(--bg-color);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Testimonial Cards */
.testimonial-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  padding: 35px;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card:hover {
  transform: translateY(-20px) scale(1.04) rotateX(2deg);
  box-shadow: 
    0 40px 100px rgba(0, 0, 0, 0.4),
    0 0 0 3px rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.3);
}

.testimonial-rating {
  display: flex;
  gap: 6px;
  margin-bottom: 25px;
}

.testimonial-rating i {
  color: #FBBF24;
  font-size: 1.3rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  animation: starTwinkle 2s ease-in-out infinite;
}

.testimonial-rating i:nth-child(1) { animation-delay: 0s; }
.testimonial-rating i:nth-child(2) { animation-delay: 0.2s; }
.testimonial-rating i:nth-child(3) { animation-delay: 0.4s; }
.testimonial-rating i:nth-child(4) { animation-delay: 0.6s; }
.testimonial-rating i:nth-child(5) { animation-delay: 0.8s; }

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

.testimonial-text {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1.05rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 25px;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.3);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.testimonial-card:hover .author-avatar {
  transform: rotate(360deg) scale(1.1);
}

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

.author-info h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bg-color);
  margin: 0 0 5px 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.author-info span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Contact Form - Redesigned */
.php-email-form .form-control {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 3px solid rgba(139, 92, 246, 0.2);
  border-radius: 15px;
  color: var(--heading-color);
  padding: 18px 20px;
  font-size: 1rem;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(139, 92, 246, 0.1);
}

.php-email-form .form-control:focus {
  background: rgba(255, 255, 255, 1);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25), 0 10px 30px rgba(139, 92, 246, 0.2);
  color: var(--heading-color);
  transform: translateY(-2px);
}

.php-email-form .form-control::placeholder {
  color: var(--contrast-color);
  opacity: 0.6;
}

.info-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 3px solid rgba(139, 92, 246, 0.2);
  border-radius: 25px;
  padding: 35px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 50px rgba(139, 92, 246, 0.15);
  position: relative;
  overflow: hidden;
}

.info-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.info-item:hover::before {
  transform: scaleX(1);
}

.info-item:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 30px 80px rgba(139, 92, 246, 0.4);
  border-color: var(--accent-color);
}

.info-item i {
  font-size: 3rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  display: inline-block;
  transition: all 0.4s ease;
}

.info-item:hover i {
  transform: rotate(360deg) scale(1.2);
}

.info-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 18px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-item p {
  color: var(--contrast-color);
  line-height: 1.8;
  margin: 0;
  font-size: 1.05rem;
}



/* Hero Visual - Complete Redesign */
.hero-visual {
  position: relative;
  z-index: 3;
}

.hero-images-container {
  position: relative;
  height: 600px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  perspective: 1000px;
}

.hero-image-main {
  position: relative;
  height: 65%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(91, 33, 182, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-image-main::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: 30px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s;
}

.hero-image-main:hover::before {
  opacity: 1;
}

.hero-image-main:hover {
  transform: translateY(-15px) rotateX(5deg);
  box-shadow: 0 30px 80px rgba(139, 92, 246, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: brightness(0.9) contrast(1.1);
}

.hero-image-main:hover .hero-main-img {
  transform: scale(1.1) rotate(2deg);
  filter: brightness(1) contrast(1.2);
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.85), rgba(236, 72, 153, 0.75));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s ease;
  backdrop-filter: blur(5px);
}

.hero-image-main:hover .hero-image-overlay {
  opacity: 1;
}

.hero-achievements {
  text-align: center;
  color: var(--bg-color);
  padding: 30px;
  animation: achievementsFadeIn 0.6s ease-out;
}

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

.achievement-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(15px);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  animation: badgePulse 2s ease-in-out infinite;
}

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

.achievement-badge i {
  color: #FBBF24;
  font-size: 1.2rem;
  animation: trophyRotate 3s ease-in-out infinite;
}

@keyframes trophyRotate {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}

.hero-achievements h4 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.5px;
}

.hero-achievements p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  font-weight: 500;
}

.achievement-stats {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.achievement-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.achievement-stat:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.achievement-stat i {
  color: #FBBF24;
  font-size: 1.2rem;
}

.hero-image-secondary {
  position: relative;
  height: 35%;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(99, 102, 241, 0.3);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-image-secondary::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-secondary);
  border-radius: 25px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s;
}

.hero-image-secondary:hover::before {
  opacity: 1;
}

.hero-image-secondary:hover {
  transform: translateY(-10px) rotateX(-3deg);
  box-shadow: 0 25px 70px rgba(99, 102, 241, 0.5);
}

.hero-secondary-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: brightness(0.85) contrast(1.1);
}

.hero-image-secondary:hover .hero-secondary-img {
  transform: scale(1.15) rotate(-2deg);
  filter: brightness(1) contrast(1.3);
}

.floating-tech-icons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 25px;
  pointer-events: none;
}

.tech-icon-item {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: iconFloatAdvanced 4s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.3);
  border: 3px solid rgba(139, 92, 246, 0.3);
  transition: all 0.3s ease;
}

.tech-icon-item:hover {
  transform: scale(1.2) rotate(360deg);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
  border-color: rgba(139, 92, 246, 0.6);
}

.tech-icon-item i {
  font-size: 1.8rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tech-icon-item:nth-child(1) { 
  animation-delay: 0s;
  animation-duration: 3.5s;
}
.tech-icon-item:nth-child(2) { 
  animation-delay: 0.7s;
  animation-duration: 4s;
}
.tech-icon-item:nth-child(3) { 
  animation-delay: 1.4s;
  animation-duration: 3.8s;
}
.tech-icon-item:nth-child(4) { 
  animation-delay: 2.1s;
  animation-duration: 4.2s;
}

@keyframes iconFloatAdvanced {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
  }
  25% { 
    transform: translateY(-15px) rotate(5deg);
  }
  50% { 
    transform: translateY(-25px) rotate(0deg);
  }
  75% { 
    transform: translateY(-15px) rotate(-5deg);
  }
}

/* About Cards */
.about-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 3px solid rgba(139, 92, 246, 0.2);
  border-radius: 30px;
  padding: 40px;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  text-align: center;
  box-shadow: 0 15px 50px rgba(139, 92, 246, 0.15);
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

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

.about-card:hover {
  transform: translateY(-20px) scale(1.02);
  box-shadow: 0 30px 80px rgba(139, 92, 246, 0.4);
  border-color: var(--accent-color);
}

.about-card.featured {
  border-color: var(--accent-color);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 243, 255, 0.95));
}

.about-card.featured::before {
  height: 8px;
  transform: scaleX(1);
}

.about-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--default-color), var(--accent-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.about-card-icon i {
  font-size: 2rem;
  color: var(--bg-color);
}

.about-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.about-card p {
  color: var(--contrast-color);
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-card-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--default-color), #ffed4e);
  color: var(--background-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-card-badge i {
  font-size: 1.1rem;
}

/* Contact Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--heading-color);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group .form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--surface-color);
  border-radius: 8px;
  background: var(--surface-color);
  color: var(--heading-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group .form-control:focus {
  outline: none;
  border-color: var(--default-color);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
  background: var(--background-color);
}

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

.form-group select.form-control {
  cursor: pointer;
}

.form-group textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Background Images for Sections */
.about.section {
  background: linear-gradient(135deg, #FDF4FF 0%, #F5F3FF 50%, #EDE9FE 100%);
  position: relative;
  overflow: hidden;
}

.about.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
  z-index: 1;
}

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

.how-it-works.section {
  background: linear-gradient(135deg, #FDF4FF 0%, #F5F3FF 50%, #EDE9FE 100%);
  position: relative;
  overflow: hidden;
}

.how-it-works.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 25%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.how-it-works.section .container {
  position: relative;
  z-index: 2;
}

/* Ensure text is readable */
.about.section .section-title,
.about.section .section-description,
.about.section h4,
.about.section p,
.about.section .about-card,
.about.section .about-card h4,
.about.section .about-card p {
  color: var(--heading-color) !important;
}

.how-it-works.section .section-title,
.how-it-works.section .section-description,
.how-it-works.section h4,
.how-it-works.section p {
  color: var(--heading-color) !important;
}

/* Enhanced card visibility */
.about.section .about-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 3px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 15px 50px rgba(139, 92, 246, 0.15);
}

.how-it-works.section .step-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 3px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 15px 50px rgba(139, 92, 246, 0.15);
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--background-color) 100%);
  color: var(--heading-color);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--accent-color);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(139,0,0,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  margin-right: 1rem;
  border: 3px solid var(--accent-color);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2);
}

.footer-logo img:hover {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3);
}

.footer-logo h3 {
  color: var(--accent-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(139, 0, 0, 0.1);
}

.footer-description {
  color: var(--contrast-color);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.footer-contact-info {
  font-size: 0.85rem;
  color: var(--contrast-color);
  line-height: 1.8;
  margin-top: 1rem;
}

.footer-contact-info p {
  margin-bottom: 0.3rem;
  color: var(--contrast-color);
}

.footer-contact-info strong {
  color: var(--heading-color);
  font-weight: 600;
}

.footer-contact-info a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer-contact-info a:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(139, 92, 246, 0.1);
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  color: var(--accent-color);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(139, 92, 246, 0.1);
}

.social-link:hover {
  background: var(--accent-color);
  color: var(--bg-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3);
}

.footer-links h4 {
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(45deg, var(--accent-color), var(--light-burgundy));
  border-radius: 2px;
}

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

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--contrast-color);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
  font-weight: 500;
}

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

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 20px;
  font-weight: 600;
}

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

.footer-newsletter h4 {
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-newsletter p {
  color: var(--contrast-color);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.newsletter-form .input-group {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(139, 0, 0, 0.1);
  border: 2px solid var(--accent-color);
}

.newsletter-form .form-control {
  background: var(--bg-color);
  border: none;
  color: var(--heading-color);
  padding: 0.75rem 1rem;
  border-radius: 0;
  font-weight: 500;
}

.newsletter-form .form-control:focus {
  background: var(--bg-color);
  border-color: var(--accent-color);
  box-shadow: none;
  outline: none;
}

.newsletter-form .form-control::placeholder {
  color: var(--contrast-color);
}

.newsletter-form .btn {
  background: linear-gradient(45deg, var(--accent-color), var(--light-burgundy));
  border: none;
  color: var(--bg-color);
  padding: 0.75rem 1rem;
  border-radius: 0;
  transition: all 0.3s ease;
  font-weight: 600;
}

.newsletter-form .btn:hover {
  background: linear-gradient(45deg, var(--light-burgundy), var(--accent-color));
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--accent-color);
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.05), transparent);
}

.copyright {
  color: var(--contrast-color);
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.footer-bottom-links a {
  color: var(--contrast-color);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 4px;
}

.footer-bottom-links a:hover {
  color: var(--accent-color);
  background: rgba(139, 92, 246, 0.1);
  transform: translateY(-1px);
}

.separator {
  color: var(--accent-color);
  font-weight: bold;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-social {
    justify-content: center;
    margin-top: 1rem;
  }
  
  .footer-bottom-links {
    justify-content: center;
    margin-top: 1rem;
  }
  
  .footer-logo {
    justify-content: center;
    text-align: center;
  }
  
  .footer-links {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .footer-newsletter {
    text-align: center;
  }
}

/* Dark Burgundy Section - Updated Colors */
.dark-burgundy-section {
  background: var(--gradient-hero);
  color: var(--bg-color);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.dark-burgundy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.3) 0%, transparent 50%);
  z-index: 1;
}

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



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

.dark-burgundy-section .section-title,
.dark-burgundy-section .section-description,
.dark-burgundy-section h3,
.dark-burgundy-section h4,
.dark-burgundy-section p {
  color: var(--bg-color) !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Timeline */
.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--bg-color), rgba(255, 255, 255, 0.3));
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--bg-color), rgba(255, 255, 255, 0.9));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.timeline-marker i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.timeline-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 15px;
  margin: 0 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.timeline-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--bg-color);
}

.timeline-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

/* Value Cards */
.value-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.value-icon {
  width: 90px;
  height: 90px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
  border: 3px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.value-card:hover .value-icon {
  transform: rotate(360deg) scale(1.15);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.7);
}

.value-icon i {
  font-size: 2.2rem;
  color: var(--bg-color);
}

.value-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--bg-color);
}

.value-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

/* Team Stats */
.team-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.stat-box {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  border-radius: 20px;
  min-width: 150px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-box:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bg-color);
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* About Visual */
.about-image {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-elements {
  position: relative;
  width: 100%;
  height: 100%;
}

.element {
  position: absolute;
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--default-color), var(--accent-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: elementFloat 8s ease-in-out infinite;
}

.element i {
  font-size: 2rem;
  color: var(--bg-color);
}

.element-1 {
  top: 20px;
  left: 20px;
  animation-delay: 0s;
}

.element-2 {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  animation-delay: 2s;
}

.element-3 {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 4s;
}

@keyframes elementFloat {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  25% { transform: translateY(-20px) translateX(10px); }
  50% { transform: translateY(-10px) translateX(-10px); }
  75% { transform: translateY(-30px) translateX(5px); }
}

/* Tech Showcase Cards */
.tech-showcase-card {
  background: linear-gradient(135deg, var(--surface-color), rgba(45, 27, 78, 0.8));
  border: 2px solid var(--default-color);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
}

.tech-showcase-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
  border-color: var(--accent-color);
}

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

.tech-showcase-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--default-color), var(--accent-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-showcase-icon i {
  font-size: 1.8rem;
  color: var(--bg-color);
}

.tech-showcase-badge {
  background: var(--accent-color);
  color: var(--bg-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.tech-showcase-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.tech-showcase-card p {
  color: var(--contrast-color);
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 20px;
}

.tech-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}

.tech-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tech-feature i {
  color: var(--accent-color);
  font-size: 1rem;
}

.tech-feature span {
  color: var(--contrast-color);
  font-size: 0.9rem;
}

.tech-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--default-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

/* Solution Cards - Complete Redesign */
.solution-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(25px);
  border: 4px solid transparent;
  border-radius: 35px;
  padding: 45px;
  height: 100%;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  box-shadow: 
    0 20px 60px rgba(102, 126, 234, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(240, 147, 251, 0.08));
  z-index: 1;
  transition: opacity 0.6s ease;
  opacity: 0.5;
}

.solution-card::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 1;
  transform: rotate(0deg);
}

.solution-card:hover::before {
  opacity: 0.8;
}

.solution-card:hover::after {
  opacity: 1;
  transform: rotate(180deg);
}

.solution-card > * {
  position: relative;
  z-index: 2;
}

.solution-card:hover {
  transform: translateY(-25px) scale(1.03) rotateY(2deg);
  box-shadow: 
    0 40px 100px rgba(102, 126, 234, 0.5),
    0 0 0 4px rgba(102, 126, 234, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(102, 126, 234, 0.5);
}

/* Specific solution card styles */
.solution-card-ai {
  background-image: url('assets/img/features-main.jpg');
}

.solution-card-analytics {
  background-image: url('assets/img/features-tech.jpg');
}

.solution-card-community {
  background-image: url('assets/img/about-team.jpg');
}

.solution-card-security {
  background-image: url('assets/img/about-office.jpg');
}

.solution-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  position: relative;
}

.solution-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 200% 200%;
  animation: iconGradient 3s ease infinite;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 15px 40px rgba(102, 126, 234, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

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

.solution-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}

.solution-card:hover .solution-icon::before {
  width: 200%;
  height: 200%;
}

.solution-card:hover .solution-icon {
  transform: rotate(360deg) scale(1.15);
  box-shadow: 
    0 20px 50px rgba(102, 126, 234, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  animation: iconGradient 1s ease infinite;
}

.solution-icon i {
  font-size: 2.2rem;
  color: var(--bg-color);
  position: relative;
  z-index: 1;
}

.solution-badge {
  background: var(--gradient-primary);
  color: var(--bg-color);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
  animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4); }
  50% { box-shadow: 0 5px 30px rgba(139, 92, 246, 0.7); }
}

.solution-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 18px;
  line-height: 1.3;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solution-card p {
  color: var(--contrast-color);
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.solution-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(139, 92, 246, 0.05);
}

.solution-feature:hover {
  background: rgba(139, 92, 246, 0.1);
  transform: translateX(5px);
}

.solution-feature i {
  color: var(--accent-color);
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
  animation: checkPulse 2s ease-in-out infinite;
}

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

.solution-feature span {
  color: var(--heading-color);
  font-size: 0.95rem;
  font-weight: 500;
}

.solution-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 12px 24px;
  border-radius: 50px;
  background: rgba(139, 92, 246, 0.1);
  border: 2px solid var(--accent-color);
}

.solution-cta:hover {
  background: var(--gradient-primary);
  color: var(--bg-color);
  transform: translateX(10px) scale(1.05);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
  border-color: transparent;
}

.solution-cta i {
  transition: transform 0.4s;
}

.solution-cta:hover i {
  transform: translateX(5px);
}

/* Contact Form */
.contact-form-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 3px solid rgba(139, 92, 246, 0.2);
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
  position: relative;
  overflow: hidden;
}

.contact-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.contact-form-container:hover::before {
  transform: scaleX(1);
}

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

.contact-form-header h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.contact-form-header p {
  color: var(--contrast-color);
  opacity: 0.8;
}

.form-group {
  margin-bottom: 20px;
}

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

.form-group .form-control {
  background: rgba(26, 11, 46, 0.8);
  border: 2px solid var(--default-color);
  border-radius: 10px;
  color: var(--contrast-color);
  padding: 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  width: 100%;
}

.form-group .form-control:focus {
  background: rgba(26, 11, 46, 0.9);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
  color: var(--contrast-color);
  outline: none;
}

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

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--surface-color), rgba(45, 27, 78, 0.8));
  border: 2px solid var(--default-color);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
  border-color: var(--accent-color);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--default-color), var(--accent-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.contact-info-icon i {
  font-size: 1.5rem;
  color: var(--bg-color);
}

.contact-info-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.contact-info-card p {
  color: var(--contrast-color);
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 10px;
}

.contact-info-status {
  display: block;
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-info-link {
  color: var(--default-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-info-link:hover {
  color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .tech-item {
    padding: 15px;
  }
  
  .about-card {
    padding: 20px;
  }
  
  .contact-form-container {
    padding: 25px;
  }
}

/*--------------------------------------------------------------
# Contact Page - Complete Redesign 2024
--------------------------------------------------------------*/

/* Contact Hero Section */
.contact-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
  background-size: 400% 400%;
  animation: contactHeroGradient 18s ease infinite;
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

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

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
  animation: contactHeroGlow 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes contactHeroGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.9; }
}

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

.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation: contactBadgeFloat 3s ease-in-out infinite;
}

@keyframes contactBadgeFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.contact-hero-title {
  font-size: 4rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.1;
  text-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(255, 255, 255, 0.1);
  animation: contactTitleSlideIn 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes contactTitleSlideIn {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.contact-hero-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.98);
  line-height: 1.9;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  animation: contactDescSlideIn 1.4s ease-out 0.4s both;
}

@keyframes contactDescSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact Section - Dark Theme */
.contact.section {
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 25%, #24243e 50%, #1a1a2e 75%, #16213e 100%);
  background-size: 400% 400%;
  animation: contactSectionGradient 20s ease infinite;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

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

.contact.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(240, 147, 251, 0.15) 0%, transparent 50%);
  animation: contactSectionGlow 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes contactSectionGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

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

/* Contact Form Wrapper */
.contact-form-wrapper {
  background: linear-gradient(135deg, rgba(30, 30, 50, 0.95) 0%, rgba(20, 20, 40, 0.98) 100%);
  backdrop-filter: blur(25px);
  border: 3px solid rgba(102, 126, 234, 0.3);
  border-radius: 35px;
  padding: 50px;
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 200% 100%;
  animation: contactFormTopBorder 3s ease infinite;
}

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

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

.form-header-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 200% 200%;
  animation: formIconGradient 3s ease infinite;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

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

.form-header-icon i {
  font-size: 2.5rem;
  color: #ffffff;
}

.contact-form-header h3 {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 200% 200%;
  animation: formHeaderGradient 4s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

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

.contact-form-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* New Form Styles */
.contact-form-new {
  position: relative;
  z-index: 2;
}

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

.form-group-new label {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group-new label i {
  color: #667eea;
  font-size: 1.1rem;
}

.form-control-new {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 3px solid rgba(102, 126, 234, 0.3);
  border-radius: 15px;
  color: rgba(255, 255, 255, 0.95);
  padding: 18px 22px;
  font-size: 1.05rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-family: var(--default-font);
}

.form-control-new:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(102, 126, 234, 0.8);
  box-shadow: 
    0 0 0 4px rgba(102, 126, 234, 0.2),
    0 10px 30px rgba(102, 126, 234, 0.3);
  transform: translateY(-2px);
}

.form-control-new::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

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

/* Contact Submit Button */
.contact-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 200% 200%;
  animation: contactSubmitGradient 3s ease infinite;
  color: #ffffff;
  border: 3px solid rgba(102, 126, 234, 0.5);
  border-radius: 50px;
  padding: 20px 45px;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 
    0 15px 40px rgba(102, 126, 234, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

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

.contact-submit-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.contact-submit-btn:hover::before {
  width: 500px;
  height: 500px;
}

.contact-submit-btn:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 
    0 25px 60px rgba(102, 126, 234, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border-color: rgba(102, 126, 234, 0.8);
  animation: contactSubmitGradient 1s ease infinite;
}

.contact-submit-btn:active {
  transform: translateY(-4px) scale(1.02);
}

.contact-submit-btn i {
  transition: transform 0.4s;
}

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

/* Contact Info Wrapper */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-card-new {
  background: linear-gradient(135deg, rgba(30, 30, 50, 0.95) 0%, rgba(20, 20, 40, 0.98) 100%);
  backdrop-filter: blur(25px);
  border: 3px solid rgba(102, 126, 234, 0.3);
  border-radius: 25px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-info-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 200% 100%;
  animation: contactCardTopBorder 3s ease infinite;
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

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

.contact-info-card-new:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 30px 80px rgba(102, 126, 234, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(102, 126, 234, 0.6);
}

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

.contact-info-icon-new {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 200% 200%;
  animation: contactIconGradient 3s ease infinite;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
  transition: all 0.4s ease;
}

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

.contact-info-card-new:hover .contact-info-icon-new {
  transform: rotate(360deg) scale(1.15);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.7);
}

.contact-info-icon-new i {
  font-size: 2rem;
  color: #ffffff;
}

.contact-info-content {
  flex: 1;
}

.contact-info-content h4 {
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 200% 200%;
  animation: contactInfoTitleGradient 4s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

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

.contact-info-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.contact-info-content a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-info-content a:hover {
  color: #667eea;
  text-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

.contact-status {
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 8px;
  padding: 5px 12px;
  background: rgba(102, 126, 234, 0.2);
  border-radius: 15px;
  border: 1px solid rgba(102, 126, 234, 0.3);
}

.contact-status.online {
  color: #10B981;
  background: rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.3);
}

.contact-link {
  color: #667eea !important;
  font-weight: 700 !important;
}

.contact-link:hover {
  color: #f093fb !important;
}

/* Map Section */
.map-section {
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 25%, #24243e 50%, #1a1a2e 75%, #16213e 100%);
  background-size: 400% 400%;
  animation: mapSectionGradient 20s ease infinite;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

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

.map-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(240, 147, 251, 0.15) 0%, transparent 50%);
  animation: mapSectionGlow 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes mapSectionGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

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

.map-section .section-title,
.map-section .section-title h2 {
  color: rgba(255, 255, 255, 0.98) !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.map-section .section-description {
  color: rgba(255, 255, 255, 0.85) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.map-section .section-badge {
  background: rgba(102, 126, 234, 0.2) !important;
  backdrop-filter: blur(20px) !important;
  border: 2px solid rgba(102, 126, 234, 0.4) !important;
  color: rgba(255, 255, 255, 0.95) !important;
}

.office-card {
  background: linear-gradient(135deg, rgba(30, 30, 50, 0.95) 0%, rgba(20, 20, 40, 0.98) 100%);
  backdrop-filter: blur(25px);
  border: 3px solid rgba(102, 126, 234, 0.3);
  border-radius: 35px;
  padding: 50px;
  text-align: center;
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.office-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 200% 100%;
  animation: officeCardTopBorder 3s ease infinite;
}

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

.office-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 200% 200%;
  animation: officeIconGradient 3s ease infinite;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
  transition: all 0.4s ease;
}

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

.office-card:hover .office-icon {
  transform: rotate(360deg) scale(1.15);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.7);
}

.office-icon i {
  font-size: 3rem;
  color: #ffffff;
}

.office-card h4 {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 200% 200%;
  animation: officeTitleGradient 4s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
}

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

.office-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.9;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.office-hours {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid rgba(102, 126, 234, 0.3);
}

.office-hours h5 {
  font-size: 1.3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 15px;
}

.office-hours p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

/*--------------------------------------------------------------
# Thanks Page - Complete Redesign 2024
--------------------------------------------------------------*/

/* Thanks Hero Section */
.thanks-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
  background-size: 400% 400%;
  animation: thanksHeroGradient 18s ease infinite;
  position: relative;
  overflow: hidden;
  padding: 160px 0 120px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.thanks-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
  animation: thanksHeroGlow 4s ease-in-out infinite;
  z-index: 1;
}

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

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

.thanks-icon-wrapper {
  margin-bottom: 40px;
  animation: thanksIconBounce 1s ease-out;
}

@keyframes thanksIconBounce {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
  }
  60% {
    transform: scale(1.2) rotate(10deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.thanks-icon {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #10B981 0%, #059669 50%, #047857 100%);
  background-size: 200% 200%;
  animation: thanksIconGradient 3s ease infinite, thanksIconPulse 2s ease-in-out infinite;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 
    0 20px 60px rgba(16, 185, 129, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: 5px solid rgba(255, 255, 255, 0.3);
}

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

@keyframes thanksIconPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(16, 185, 129, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }
}

.thanks-icon i {
  font-size: 5rem;
  color: #ffffff;
  animation: thanksCheckMark 0.8s ease-out 0.3s both;
}

@keyframes thanksCheckMark {
  from {
    opacity: 0;
    transform: scale(0) rotate(-45deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.thanks-title {
  font-size: 5rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(255, 255, 255, 0.1);
  animation: thanksTitleSlideIn 1s ease-out 0.5s both;
}

@keyframes thanksTitleSlideIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.thanks-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  animation: thanksSubtitleSlideIn 1s ease-out 0.7s both;
}

@keyframes thanksSubtitleSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Thanks Content Section */
.thanks-content {
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 25%, #24243e 50%, #1a1a2e 75%, #16213e 100%);
  background-size: 400% 400%;
  animation: thanksContentGradient 20s ease infinite;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

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

.thanks-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(240, 147, 251, 0.15) 0%, transparent 50%);
  animation: thanksContentGlow 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes thanksContentGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

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

.thanks-card {
  background: linear-gradient(135deg, rgba(30, 30, 50, 0.95) 0%, rgba(20, 20, 40, 0.98) 100%);
  backdrop-filter: blur(25px);
  border: 3px solid rgba(102, 126, 234, 0.3);
  border-radius: 35px;
  padding: 60px;
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  animation: thanksCardFadeIn 1s ease-out 0.9s both;
}

@keyframes thanksCardFadeIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.thanks-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 200% 100%;
  animation: thanksCardTopBorder 3s ease infinite;
}

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

.thanks-card-header {
  text-align: center;
  margin-bottom: 50px;
}

.thanks-card-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 200% 200%;
  animation: thanksCardTitleGradient 4s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

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

.thanks-message {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.9;
  max-width: 700px;
  margin: 0 auto;
}

.thanks-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 50px;
}

.thanks-info-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 25px;
  background: rgba(102, 126, 234, 0.1);
  border: 2px solid rgba(102, 126, 234, 0.2);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.thanks-info-item:hover {
  background: rgba(102, 126, 234, 0.15);
  border-color: rgba(102, 126, 234, 0.4);
  transform: translateX(10px);
}

.thanks-info-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 200% 200%;
  animation: thanksInfoIconGradient 3s ease infinite;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

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

.thanks-info-icon i {
  font-size: 1.8rem;
  color: #ffffff;
}

.thanks-info-text h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 8px;
}

.thanks-info-text p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
}

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

.thanks-btn-primary,
.thanks-btn-secondary {
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.thanks-btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 200% 200%;
  animation: thanksBtnPrimaryGradient 3s ease infinite;
  color: #ffffff;
  border: 3px solid rgba(102, 126, 234, 0.5);
  box-shadow: 
    0 15px 40px rgba(102, 126, 234, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

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

.thanks-btn-primary:hover {
  transform: translateY(-8px) scale(1.08);
  box-shadow: 
    0 25px 60px rgba(102, 126, 234, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  animation: thanksBtnPrimaryGradient 1s ease infinite;
}

.thanks-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  color: rgba(255, 255, 255, 0.95);
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.thanks-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-8px) scale(1.08);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.thanks-additional {
  text-align: center;
}

.thanks-additional h3 {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 200% 200%;
  animation: thanksAdditionalTitleGradient 4s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

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

.thanks-step {
  background: linear-gradient(135deg, rgba(30, 30, 50, 0.95) 0%, rgba(20, 20, 40, 0.98) 100%);
  backdrop-filter: blur(25px);
  border: 3px solid rgba(102, 126, 234, 0.3);
  border-radius: 30px;
  padding: 40px 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.thanks-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 200% 100%;
  animation: thanksStepTopBorder 3s ease infinite;
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.thanks-step:hover::before {
  transform: scaleX(1);
}

.thanks-step:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 
    0 40px 100px rgba(102, 126, 234, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(102, 126, 234, 0.6);
}

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

.thanks-step-number {
  position: absolute;
  top: -20px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 200% 200%;
  animation: thanksStepNumberGradient 3s ease infinite;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
  border: 4px solid rgba(255, 255, 255, 0.3);
}

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

.thanks-step:hover .thanks-step-number {
  transform: rotate(360deg) scale(1.2);
}

.thanks-step h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 15px;
  margin-top: 20px;
}

.thanks-step p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin: 0;
  font-size: 1.05rem;
}

/* Responsive Design for Contact & Thanks */
@media (max-width: 768px) {
  .contact-hero-title {
    font-size: 2.5rem;
  }
  
  .contact-hero-description {
    font-size: 1.1rem;
  }
  
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  
  .contact-info-card-new {
    flex-direction: column;
    text-align: center;
  }
  
  .thanks-title {
    font-size: 3rem;
  }
  
  .thanks-card {
    padding: 40px 25px;
  }
  
  .thanks-actions {
    flex-direction: column;
  }
  
  .thanks-btn-primary,
  .thanks-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   Policy Pages Styles (Cookie, Privacy, Terms)
   ======================================== */

/* Policy Content Container */
.about.section .content {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.03) 0%, rgba(99, 102, 241, 0.05) 50%, rgba(236, 72, 153, 0.03) 100%);
  padding: 60px;
  border-radius: 30px;
  border: 2px solid rgba(139, 92, 246, 0.1);
  box-shadow: 
    0 20px 60px rgba(139, 92, 246, 0.1),
    0 10px 30px rgba(99, 102, 241, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.about.section .content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(236, 72, 153, 0.06) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.about.section .content > * {
  position: relative;
  z-index: 1;
}

.about.section .content:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 
    0 30px 80px rgba(139, 92, 246, 0.15),
    0 15px 40px rgba(99, 102, 241, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Policy Headings */
.about.section .content h3 {
  color: var(--dark-purple);
  font-size: 2rem;
  font-weight: 700;
  margin-top: 50px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, var(--dark-purple) 0%, var(--light-blue) 50%, var(--dark-pink) 100%) 1;
  position: relative;
  transition: all 0.3s ease;
}

.about.section .content h3::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--dark-pink) 0%, var(--light-blue) 100%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about.section .content h3:hover::before {
  width: 100%;
}

.about.section .content h3:hover {
  color: var(--light-blue);
  transform: translateX(10px);
}

.about.section .content h3:first-of-type {
  margin-top: 0;
}

/* Policy Paragraphs */
.about.section .content p {
  color: #4B5563;
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 25px;
  text-align: justify;
  transition: color 0.3s ease;
}

.about.section .content p:hover {
  color: #1F2937;
}

.about.section .content p strong {
  color: var(--dark-purple);
  font-weight: 700;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
  padding: 2px 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.about.section .content p strong:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
  color: var(--dark-pink);
}

/* Policy Lists */
.about.section .content ul {
  list-style: none;
  padding-left: 0;
  margin: 30px 0;
}

.about.section .content ul li {
  color: #4B5563;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 50px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about.section .content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, var(--dark-purple) 0%, var(--light-blue) 50%, var(--dark-pink) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 
    0 4px 15px rgba(139, 92, 246, 0.3),
    0 2px 8px rgba(99, 102, 241, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about.section .content ul li:hover {
  transform: translateX(10px);
  color: var(--dark-purple);
}

.about.section .content ul li:hover::before {
  transform: rotate(360deg) scale(1.15);
  box-shadow: 
    0 6px 20px rgba(139, 92, 246, 0.4),
    0 3px 12px rgba(99, 102, 241, 0.3),
    0 0 30px rgba(236, 72, 153, 0.2);
}

.about.section .content ul li strong {
  color: var(--dark-purple);
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
  font-size: 1.15rem;
}

/* Section Title Styling */
.about.section .section-title h2 {
  color: var(--dark-purple);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--dark-purple) 0%, var(--light-blue) 50%, var(--dark-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
  transition: all 0.4s ease;
}

.about.section .section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--dark-purple) 0%, var(--light-blue) 50%, var(--dark-pink) 100%);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about.section .section-title h2:hover::after {
  transform: scaleX(1);
}

.about.section .section-title p {
  color: #6B7280;
  font-size: 1.25rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* Contact Info in Policy Pages */
.about.section .content p span {
  color: var(--dark-purple);
  font-weight: 600;
  padding: 3px 10px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(96, 165, 250, 0.1) 100%);
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
}

.about.section .content p span:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(96, 165, 250, 0.2) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

/* Responsive for Policy Pages */
@media (max-width: 992px) {
  .about.section .content {
    padding: 40px;
  }
  
  .about.section .content h3 {
    font-size: 1.75rem;
  }
  
  .about.section .section-title h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .about.section .content {
    padding: 30px 20px;
  }
  
  .about.section .content h3 {
    font-size: 1.5rem;
    margin-top: 35px;
  }
  
  .about.section .content p {
    font-size: 1rem;
    text-align: left;
  }
  
  .about.section .content ul li {
    padding-left: 45px;
    font-size: 1rem;
  }
  
  .about.section .section-title h2 {
    font-size: 2rem;
  }
  
  .about.section .section-title p {
    font-size: 1.1rem;
  }
}

/* ========================================
   Thanks Page Styles
   ======================================== */

/* Thanks Hero Section */
.thanks-hero {
  background: linear-gradient(135deg, #1E1B4B 0%, #312E81 30%, #581C87 70%, #7E22CE 100%);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.thanks-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(96, 165, 250, 0.15) 0%, transparent 60%);
  pointer-events: none;
  animation: thanksGlow 8s ease-in-out infinite;
}

@keyframes thanksGlow {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.thanks-hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Thanks Icon Animation */
.thanks-icon-wrapper {
  margin-bottom: 40px;
}

.thanks-icon {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: thanksIconPulse 2s ease-in-out infinite;
  box-shadow: 
    0 0 60px rgba(139, 92, 246, 0.4),
    0 0 100px rgba(236, 72, 153, 0.3),
    inset 0 0 30px rgba(255, 255, 255, 0.1);
}

.thanks-icon::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 3px solid rgba(139, 92, 246, 0.3);
  border-radius: 50%;
  animation: thanksRipple 2s ease-out infinite;
}

.thanks-icon::after {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid rgba(236, 72, 153, 0.2);
  border-radius: 50%;
  animation: thanksRipple 2s 0.5s ease-out infinite;
}

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

@keyframes thanksRipple {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.thanks-icon i {
  font-size: 80px;
  color: #fff;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
  animation: thanksCheckmark 1s ease-out;
}

@keyframes thanksCheckmark {
  0% {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.2) rotate(10deg);
  }
  100% {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

/* Thanks Title */
.thanks-title {
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 
    0 2px 20px rgba(139, 92, 246, 0.5),
    0 4px 40px rgba(236, 72, 153, 0.3);
  animation: thanksTitleSlide 0.8s ease-out 0.3s backwards;
}

@keyframes thanksTitleSlide {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.thanks-title .text-gradient {
  background: linear-gradient(135deg, #A78BFA 0%, #60A5FA 50%, #EC4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: thanksGradientShift 3s ease infinite;
  background-size: 200% 200%;
}

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

.thanks-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  animation: thanksTitleSlide 0.8s ease-out 0.5s backwards;
}

/* Thanks Content Section */
.thanks-content.section {
  background: linear-gradient(135deg, #FDF4FF 0%, #F5F3FF 50%, #EDE9FE 100%);
  padding: 100px 0;
  position: relative;
}

.thanks-content.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Thanks Card */
.thanks-card {
  background: #fff;
  border-radius: 30px;
  padding: 60px 50px;
  box-shadow: 
    0 20px 60px rgba(139, 92, 246, 0.15),
    0 10px 30px rgba(99, 102, 241, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(139, 92, 246, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.thanks-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--dark-purple) 0%, var(--light-blue) 50%, var(--dark-pink) 100%);
}

.thanks-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 30px 80px rgba(139, 92, 246, 0.2),
    0 15px 40px rgba(99, 102, 241, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(139, 92, 246, 0.3);
}

.thanks-card-header h2 {
  color: var(--dark-purple);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--dark-purple) 0%, var(--light-blue) 50%, var(--dark-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thanks-message {
  color: #6B7280;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Thanks Info Items */
.thanks-info {
  margin-bottom: 50px;
}

.thanks-info-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 30px;
  margin-bottom: 25px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.03) 0%, rgba(96, 165, 250, 0.05) 100%);
  border-radius: 20px;
  border: 2px solid rgba(139, 92, 246, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.thanks-info-item:hover {
  transform: translateX(10px);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(96, 165, 250, 0.1) 100%);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 
    0 10px 30px rgba(139, 92, 246, 0.1),
    0 5px 15px rgba(99, 102, 241, 0.08);
}

.thanks-info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--dark-purple) 0%, var(--light-blue) 50%, var(--dark-pink) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 
    0 4px 15px rgba(139, 92, 246, 0.3),
    0 2px 8px rgba(99, 102, 241, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.thanks-info-item:hover .thanks-info-icon {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 
    0 6px 20px rgba(139, 92, 246, 0.4),
    0 3px 12px rgba(99, 102, 241, 0.3),
    0 0 30px rgba(236, 72, 153, 0.2);
}

.thanks-info-icon i {
  font-size: 28px;
  color: #fff;
}

.thanks-info-text h4 {
  color: var(--dark-purple);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.thanks-info-text p {
  color: #6B7280;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Thanks Actions */
.thanks-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.thanks-btn-primary,
.thanks-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.thanks-btn-primary {
  background: linear-gradient(135deg, var(--dark-purple) 0%, var(--light-blue) 50%, var(--dark-pink) 100%);
  color: #fff;
  border: none;
  box-shadow: 
    0 4px 15px rgba(139, 92, 246, 0.3),
    0 2px 8px rgba(99, 102, 241, 0.2);
}

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

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

.thanks-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 8px 25px rgba(139, 92, 246, 0.4),
    0 4px 15px rgba(99, 102, 241, 0.3),
    0 0 40px rgba(236, 72, 153, 0.2);
}

.thanks-btn-secondary {
  background: #fff;
  color: var(--dark-purple);
  border: 2px solid var(--dark-purple);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.1);
}

.thanks-btn-secondary:hover {
  background: var(--dark-purple);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 
    0 8px 25px rgba(139, 92, 246, 0.3),
    0 4px 15px rgba(99, 102, 241, 0.2);
}

.thanks-btn-primary i,
.thanks-btn-secondary i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

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

.thanks-btn-secondary:hover i {
  transform: rotate(-360deg);
}

/* Next Steps Section */
.thanks-next-steps {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 2px solid rgba(139, 92, 246, 0.1);
}

.thanks-next-steps h3 {
  color: var(--dark-purple);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.thanks-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.thanks-step-card {
  padding: 30px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.03) 0%, rgba(96, 165, 250, 0.05) 100%);
  border-radius: 20px;
  border: 2px solid rgba(139, 92, 246, 0.1);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.thanks-step-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(96, 165, 250, 0.1) 100%);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 
    0 10px 30px rgba(139, 92, 246, 0.15),
    0 5px 15px rgba(99, 102, 241, 0.1);
}

.thanks-step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--dark-purple) 0%, var(--light-blue) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
  transition: all 0.3s ease;
}

.thanks-step-card:hover .thanks-step-number {
  transform: rotate(360deg) scale(1.1);
}

.thanks-step-card h4 {
  color: var(--dark-purple);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.thanks-step-card p {
  color: #6B7280;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive for Thanks Page */
@media (max-width: 992px) {
  .thanks-hero {
    min-height: 60vh;
    padding: 60px 0;
  }
  
  .thanks-icon {
    width: 120px;
    height: 120px;
  }
  
  .thanks-icon i {
    font-size: 60px;
  }
  
  .thanks-title {
    font-size: 3.5rem;
  }
  
  .thanks-card {
    padding: 50px 40px;
  }
  
  .thanks-card-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .thanks-hero {
    min-height: 50vh;
  }
  
  .thanks-icon {
    width: 100px;
    height: 100px;
  }
  
  .thanks-icon i {
    font-size: 50px;
  }
  
  .thanks-title {
    font-size: 2.5rem;
  }
  
  .thanks-subtitle {
    font-size: 1.2rem;
  }
  
  .thanks-content.section {
    padding: 60px 0;
  }
  
  .thanks-card {
    padding: 40px 25px;
  }
  
  .thanks-card-header h2 {
    font-size: 1.75rem;
  }
  
  .thanks-message {
    font-size: 1.1rem;
  }
  
  .thanks-info-item {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }
  
  .thanks-actions {
    flex-direction: column;
  }
  
  .thanks-btn-primary,
  .thanks-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .thanks-steps-grid {
    grid-template-columns: 1fr;
  }
}