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

  /* Global Colors - Calming Yoga/Meditation Palette */
  :root {
    --background-color: #1a1f2e;
    --default-color: #e8e8e8;
    --heading-color: #9b7ed9;
    --accent-color: #7b9acc;
    --surface-color: #2a3441;
    --contrast-color: #ffffff;
    --nav-color: #b8a8d4;
    --nav-hover-color: #9b7ed9;
    --nav-mobile-background-color: #2a3441;
    --nav-dropdown-background-color: #2a3441;
    --nav-dropdown-color: #e8e8e8;
    --nav-dropdown-hover-color: #9b7ed9;
    --success-color: #7fb069;
    --warning-color: #d4a574;
    --danger-color: #c97d7d;
    --info-color: #7b9acc;
  }


  /* Color Presets - Calming theme for all sections */
  
  .light-background {
    --background-color: #2a3441;
    --default-color: #e8e8e8;
    --heading-color: #9b7ed9;
    --surface-color: #3a4451;
    --contrast-color: #ffffff;
  }
  
  .dark-background {
    --background-color: #1a1f2e;
    --default-color: #e8e8e8;
    --heading-color: #b8a8d4;
    --surface-color: #2a3441;
    --contrast-color: #ffffff;
  }


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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Modern Header
--------------------------------------------------------------*/
.header-modern {
  position: relative;
  z-index: 997;
  background: transparent;
}

.header-main {
  background: rgba(26, 31, 46, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(155, 126, 217, 0.2);
  padding: 1.25rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scrolled .header-main {
  background: rgba(26, 31, 46, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border-bottom-color: rgba(155, 126, 217, 0.3);
  padding: 0.75rem 0;
}

.header-main-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.logo-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

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

.logo-modern .logo-img {
  width: 240px;
  height: 72px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.logo-modern:hover .logo-img {
  transform: rotate(5deg) scale(1.1);
}


.navmenu-modern {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
  align-items: center;
}

.nav-menu-list li {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 0.875rem 1.5rem;
  color: rgba(232, 232, 232, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  font-family: var(--nav-font);
  letter-spacing: 0.3px;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(155, 126, 217, 0.15), rgba(123, 154, 204, 0.15));
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-link:hover {
  color: var(--heading-color);
  transform: translateY(-2px);
}

.nav-link:hover::before {
  opacity: 1;
}

.nav-link.active {
  color: var(--heading-color);
  background: linear-gradient(135deg, rgba(155, 126, 217, 0.2), rgba(123, 154, 204, 0.2));
  box-shadow: 0 4px 12px rgba(155, 126, 217, 0.2);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 3px;
  background: linear-gradient(90deg, var(--heading-color), var(--accent-color));
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.btn-primary-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  color: var(--contrast-color);
  padding: 0.875rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(155, 126, 217, 0.3);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  font-family: var(--heading-font);
  letter-spacing: 0.5px;
}

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

.btn-primary-modern:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(155, 126, 217, 0.5);
  border-color: rgba(155, 126, 217, 0.5);
}

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

.btn-primary-modern:active {
  transform: translateY(-1px) scale(0.98);
}

.mobile-nav-toggle {
  display: none;
  font-size: 1.75rem;
  color: var(--default-color);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.75rem;
  line-height: 1;
  z-index: 1000;
  border-radius: 8px;
  background: rgba(155, 126, 217, 0.1);
  border: 1px solid rgba(155, 126, 217, 0.2);
}

.mobile-nav-toggle:hover {
  color: var(--heading-color);
  background: rgba(155, 126, 217, 0.2);
  transform: rotate(90deg);
}

@media (max-width: 1199px) {
  body {
    overflow-x: hidden;
  }


  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .navmenu-modern {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    background: linear-gradient(180deg, rgba(26, 31, 46, 0.98), rgba(42, 52, 65, 0.98));
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 2rem;
    padding-top: 5rem;
    transform: translateX(100%);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s ease, opacity 0.4s ease, pointer-events 0.4s ease;
    z-index: 1001;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    flex: none;
    display: flex;
    border-left: 1px solid rgba(155, 126, 217, 0.2);
  }

  .navmenu-modern.active {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .navmenu-modern.active,
  .navmenu-modern.active * {
    pointer-events: auto !important;
  }

  .navmenu-modern:not(.active) {
    display: none !important;
  }

  .header-main-content {
    position: relative;
  }

  .header-main-content .navmenu-modern {
    position: fixed;
    top: 0;
    right: 0;
  }

  .nav-menu-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    position: relative;
    z-index: 1;
  }

  .nav-link {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    background: rgba(155, 126, 217, 0.05);
    border: 1px solid rgba(155, 126, 217, 0.1);
  }

  .nav-link:hover {
    background: rgba(155, 126, 217, 0.15);
    border-color: rgba(155, 126, 217, 0.3);
  }

  .nav-link.active {
    background: linear-gradient(135deg, rgba(155, 126, 217, 0.2), rgba(123, 154, 204, 0.2));
    border-color: rgba(155, 126, 217, 0.4);
  }

  .mobile-nav-toggle {
    display: block;
    order: -1;
  }

  .header-actions {
    gap: 0.75rem;
  }

  .header-top-content {
    justify-content: center;
  }

  .header-contact-info {
    display: none;
  }
}

@media (max-width: 768px) {
  .header-top {
    display: none;
  }

  .logo-modern .logo-img {
    width: 180px;
    height: 54px;
  }


  .header-main-content {
    gap: 1rem;
  }

  .btn-primary-modern {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }

  .nav-link {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Global Header (Legacy - keeping for compatibility)
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

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


/* Logo */
.logo-img {
  width: 240px;
  height: 70px;
  transition: all 0.3s ease;
}

.logo:hover .logo-img {
  transform: scale(1.1) rotate(5deg);
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 400;
  color: var(--heading-color);
}

.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;
  border-radius: 50px;
  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 {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    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;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

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

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

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

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

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

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

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

  .mobile-nav-active .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;
  }
}

/*--------------------------------------------------------------
# New Footer
--------------------------------------------------------------*/
.footer-new {
  position: relative;
  background: linear-gradient(180deg, var(--background-color) 0%, rgba(26, 26, 38, 0.98) 100%);
  color: var(--default-color);
  padding: 5rem 0 0;
  overflow: hidden;
  border-top: 1px solid rgba(147, 51, 234, 0.2);
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 30%, rgba(147, 51, 234, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.footer-main {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

/* Brand Section */
.footer-brand-section {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.3s ease;
  width: fit-content;
}

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

.footer-logo-image {
  width: 240px;
  height: 72px;
  object-fit: contain;
}


.footer-tagline {
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0;
}

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

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(147, 51, 234, 0.2);
  border-radius: 12px;
  color: var(--default-color);
  opacity: 0.7;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-link:hover {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  opacity: 1;
  transform: translateY(-3px);
  border-color: var(--accent-color);
  box-shadow: 0 8px 20px rgba(147, 51, 234, 0.3);
}

/* Links Grid */
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

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

.footer-newsletter-column {
  grid-column: span 1;
}

.footer-column-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 1.5rem 0;
  font-family: var(--heading-font);
  letter-spacing: -0.3px;
}

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

.footer-links-list li a {
  color: var(--default-color);
  opacity: 0.7;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

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

/* Newsletter */
.footer-newsletter-description {
  color: var(--default-color);
  opacity: 0.8;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

.footer-newsletter-form {
  margin-bottom: 0;
}

.newsletter-input-wrapper {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(147, 51, 234, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.newsletter-input-wrapper:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

.newsletter-input-field {
  flex: 1;
  border: none;
  background: transparent;
  padding: 1rem 1.25rem;
  color: var(--default-color);
  font-size: 0.95rem;
  outline: none;
}

.newsletter-input-field::placeholder {
  color: var(--default-color);
  opacity: 0.5;
}

.newsletter-submit-btn {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border: none;
  padding: 1rem 1.5rem;
  color: var(--contrast-color);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.newsletter-submit-btn:hover {
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
  border-top: 1px solid rgba(147, 51, 234, 0.15);
  background: rgba(26, 26, 38, 0.5);
  backdrop-filter: blur(10px);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-copyright {
  color: var(--default-color);
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-copyright strong {
  color: var(--accent-color);
  opacity: 1;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: var(--default-color);
  opacity: 0.7;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

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

.link-separator {
  color: var(--default-color);
  opacity: 0.4;
}

.footer-contact-info {
  display: flex;
  justify-content: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(147, 51, 234, 0.1);
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--default-color);
  opacity: 0.7;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-contact-link i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.footer-contact-link:hover {
  color: var(--accent-color);
  opacity: 1;
}

/* Responsive */
@media (max-width: 1199px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer-newsletter-column {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer-new {
    padding: 4rem 0 0;
  }

  .footer-main {
    gap: 2.5rem;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-newsletter-column {
    grid-column: span 1;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-legal-links {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Global Footer (Legacy - keeping for compatibility)
--------------------------------------------------------------*/
.footer {
  background: linear-gradient(180deg, #1a1626 0%, #0f0d17 100%);
  color: var(--contrast-color);
  font-size: 14px;
  padding: 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(147, 51, 234, 0.2);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(177, 156, 217, 0.05) 0%, transparent 50%);
  z-index: 1;
}

/* Newsletter Section */
.footer-newsletter {
  background: linear-gradient(135deg, var(--accent-color), #f59e0b);
  padding: 80px 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  backdrop-filter: blur(10px);
}

.newsletter-icon i {
  font-size: 36px;
  color: white;
}

.newsletter-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.newsletter-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
}

.newsletter-form {
  position: relative;
}

.input-group {
  display: flex;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.input-group:focus-within {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.newsletter-form input[type="email"] {
  flex: 1;
  border: none;
  background: transparent;
  padding: 15px 25px;
  color: white;
  font-size: 16px;
  outline: none;
}

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

.btn-newsletter {
  background: var(--surface-color);
  border: none;
  border-radius: 50px;
  padding: 15px 25px;
  color: var(--accent-color);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
}

.btn-newsletter:hover {
  background: var(--dark-background);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

.form-messages > div {
  display: none;
  padding: 15px;
  border-radius: 10px;
  margin-top: 15px;
  font-weight: 500;
}

.form-messages .loading {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.form-messages .error-message {
  background: rgba(239, 68, 68, 0.2);
  color: #fecaca;
}

.form-messages .sent-message {
  background: rgba(34, 197, 94, 0.2);
  color: #bbf7d0;
}

/* Main Footer Content */
.footer-main {
  padding: 60px 0 40px;
  position: relative;
  z-index: 2;
}

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

.brand-logo {
  width: 200px;
  height: 60px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.footer-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
}

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

.brand-logo i {
  font-size: 28px;
  color: white;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
  letter-spacing: 0.5px;
}

.brand-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Footer Social */
.footer-social {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-link:hover {
  background: rgba(147, 51, 234, 0.2);
  color: var(--accent-color);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(147, 51, 234, 0.25);
  border-color: rgba(147, 51, 234, 0.4);
}

.social-link i {
  font-size: 1.1rem;
}

/* Footer Newsletter Compact */
.footer-newsletter-compact {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-newsletter-compact h5 {
  color: var(--heading-color);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-newsletter-compact p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.newsletter-form-compact {
  margin-top: 1rem;
}

.input-group-compact {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  gap: 0.5rem;
}

.input-group-compact:focus-within {
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

.input-group-compact input[type="email"] {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.875rem 1rem;
  color: var(--contrast-color);
  font-size: 0.9rem;
  outline: none;
}

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

.btn-newsletter-compact {
  background: var(--accent-color);
  border: none;
  padding: 0.875rem 1.5rem;
  color: var(--contrast-color);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  border-radius: 8px;
}

.btn-newsletter-compact:hover {
  background: var(--heading-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
}

/* Footer Legal */
.footer-legal {
  text-align: right;
}

.footer-legal .legal-info {
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-legal .legal-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  line-height: 1.6;
  margin: 0;
}

.footer-legal .legal-info strong {
  color: rgba(255, 255, 255, 0.9);
}


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

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-3px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.3);
}

.social-link i {
  font-size: 20px;
}

/* Footer Links */
.footer-links h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

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

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

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px solid transparent;
}

.footer-links ul li a:hover {
  color: var(--contrast-color);
  background: rgba(147, 51, 234, 0.15);
  border-left-color: var(--accent-color);
  padding-left: 1rem;
}

/* Footer Contact */
.footer-contact h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(147, 51, 234, 0.15);
  border-color: rgba(147, 51, 234, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
  text-align: center;
}

.contact-item span,
.contact-item a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
  flex: 1;
}

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

.contact-item:hover a,
.contact-item:hover span {
  color: var(--contrast-color);
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.4);
  padding: 30px 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.copyright p strong {
  color: var(--contrast-color);
}

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

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.footer-bottom-links a:hover {
  color: var(--contrast-color);
  background: rgba(147, 51, 234, 0.15);
  border-color: rgba(147, 51, 234, 0.3);
  transform: translateY(-2px);
}

.separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

/* Responsive Footer */
@media (max-width: 991px) {
  .footer-legal {
    text-align: left;
    margin-top: 2rem;
  }
  
  .footer-main {
    padding: 60px 0 30px;
  }
  
  .footer-bottom .row {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom .col-md-6 {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .footer-legal {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-newsletter {
    padding: 60px 0;
  }
  
  .newsletter-content h3 {
    font-size: 1.8rem;
  }
  
  .newsletter-content p {
    font-size: 1rem;
  }
  
  .input-group {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn-newsletter {
    width: 100%;
    padding: 15px;
  }
  
  .footer-main {
    padding: 50px 0 25px;
  }
  
  .social-links {
    justify-content: center;
  }
}

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(177, 156, 217, 0.05) 100%);
  padding: 60px 0;
  position: relative;
  border-bottom: 1px solid rgba(147, 51, 234, 0.2);
}

.page-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
}

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

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

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

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

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

@media (max-width: 1199px) {

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

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 160px 0 120px;
  background: #1a1f2e;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #1a1f2e 0%, #1e2433 50%, #1a1f2e 100%);
  z-index: 0;
  overflow: hidden;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 25%, rgba(155, 126, 217, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(123, 154, 204, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(155, 126, 217, 0.08) 0%, transparent 60%);
  z-index: 1;
  animation: gradient-pulse 20s ease-in-out infinite;
}

@keyframes gradient-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 126, 217, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  animation: particle-float 30s ease-in-out infinite;
}

.hero-particles::before {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.hero-particles::after {
  bottom: 10%;
  right: 10%;
  animation-delay: 15s;
}

@keyframes particle-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  33% {
    transform: translate(50px, -50px) scale(1.2);
    opacity: 0.8;
  }
  66% {
    transform: translate(-30px, 30px) scale(0.9);
    opacity: 0.6;
  }
}



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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(42, 52, 65, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(155, 126, 217, 0.2);
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
  color: rgba(232, 232, 232, 0.9);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.hero-badge:hover {
  border-color: rgba(155, 126, 217, 0.4);
  background: rgba(42, 52, 65, 0.6);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--heading-color);
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(155, 126, 217, 0.6);
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--contrast-color);
  font-family: var(--heading-font);
  letter-spacing: -1px;
}

.hero-title .title-line {
  display: block;
  margin-bottom: 0.5rem;
}

.hero-title .highlight-text {
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  animation: text-glow 3s ease-in-out infinite;
}

@keyframes text-glow {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(155, 126, 217, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(155, 126, 217, 0.6));
  }
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(232, 232, 232, 0.8);
  margin-bottom: 2.5rem;
  max-width: 580px;
  font-weight: 400;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(232, 232, 232, 0.85);
  font-size: 1rem;
  font-weight: 400;
}

.hero-feature-item i {
  color: var(--success-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-cta {
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  color: var(--contrast-color);
  padding: 1.125rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(155, 126, 217, 0.4);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  font-family: var(--heading-font);
}

.btn-hero-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.6s ease;
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(155, 126, 217, 0.6);
  border-color: rgba(155, 126, 217, 0.5);
}

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

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

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

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: var(--default-color);
  padding: 1.125rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(155, 126, 217, 0.3);
}

.btn-hero-outline:hover {
  background: rgba(155, 126, 217, 0.1);
  border-color: var(--heading-color);
  color: var(--heading-color);
  transform: translateY(-2px);
}

.hero-trust {
  margin-top: 2rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(232, 232, 232, 0.75);
  font-size: 0.9rem;
  font-weight: 400;
}

.trust-badge i {
  color: var(--success-color);
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 3rem 0;
}

.hero-meditation-circle {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(155, 126, 217, 0.2);
  animation: ring-pulse 4s ease-in-out infinite;
}

.circle-ring.ring-1 {
  width: 400px;
  height: 400px;
  animation-delay: 0s;
}

.circle-ring.ring-2 {
  width: 320px;
  height: 320px;
  animation-delay: 1.33s;
}

.circle-ring.ring-3 {
  width: 240px;
  height: 240px;
  animation-delay: 2.66s;
}

@keyframes ring-pulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

.circle-center {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(155, 126, 217, 0.3), rgba(123, 154, 204, 0.3));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(155, 126, 217, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(155, 126, 217, 0.3), inset 0 0 40px rgba(155, 126, 217, 0.1);
  z-index: 10;
  animation: center-float 6s ease-in-out infinite;
}

@keyframes center-float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1.02);
  }
}

.circle-center i {
  font-size: 5rem;
  color: var(--heading-color);
  animation: lotus-rotate 20s linear infinite;
}

@keyframes lotus-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hero-practice-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.practice-card {
  background: linear-gradient(135deg, rgba(42, 52, 65, 0.6), rgba(26, 31, 46, 0.6));
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 1.75rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  border: 1px solid rgba(155, 126, 217, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.practice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(155, 126, 217, 0.1), rgba(123, 154, 204, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.practice-card:hover {
  transform: translateY(-8px);
  border-color: var(--heading-color);
  box-shadow: 0 20px 50px rgba(155, 126, 217, 0.3);
}

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

.practice-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  box-shadow: 0 8px 25px rgba(155, 126, 217, 0.4);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.practice-card:hover .practice-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(155, 126, 217, 0.6);
}

.practice-icon i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.practice-info {
  position: relative;
  z-index: 1;
}

.practice-info h4 {
  color: var(--default-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-family: var(--heading-font);
}

.practice-info p {
  color: rgba(232, 232, 232, 0.6);
  font-size: 0.9rem;
  margin: 0;
  font-weight: 400;
}

.practice-card.card-yoga {
  animation: card-float-1 6s ease-in-out infinite;
}

.practice-card.card-meditation {
  animation: card-float-2 6s ease-in-out infinite;
  animation-delay: 1.5s;
}

.practice-card.card-mindfulness {
  animation: card-float-3 6s ease-in-out infinite;
  animation-delay: 3s;
}

.practice-card.card-balance {
  animation: card-float-4 6s ease-in-out infinite;
  animation-delay: 4.5s;
}

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

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

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

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


.hero-scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: rgba(232, 232, 232, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.scroll-down:hover {
  color: var(--heading-color);
}

.scroll-line {
  width: 2px;
  height: 50px;
  background: linear-gradient(180deg, rgba(155, 126, 217, 0.5), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% {
    height: 50px;
    opacity: 1;
  }
  100% {
    height: 70px;
    opacity: 0.3;
  }
}

.scroll-down span {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@keyframes ripple {
  to {
    transform: translate(-50%, -50%) scale(4);
    opacity: 0;
  }
}

@media (max-width: 992px) {
  .hero-meditation-circle {
    width: 300px;
    height: 300px;
  }

  .circle-ring.ring-1 {
    width: 300px;
    height: 300px;
  }

  .circle-ring.ring-2 {
    width: 240px;
    height: 240px;
  }

  .circle-ring.ring-3 {
    width: 180px;
    height: 180px;
  }

  .circle-center {
    width: 140px;
    height: 140px;
  }

  .circle-center i {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 140px 0 100px;
  }

  .hero-title {
    font-size: 2.25rem;
    line-height: 1.25;
  }

  .hero-title .title-line {
    margin-bottom: 0.25rem;
  }

  .hero-description {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-features {
    gap: 0.75rem;
  }

  .hero-feature-item {
    font-size: 0.95rem;
  }

  .trust-badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hero-practice-cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 100%;
  }

  .hero-meditation-circle {
    width: 250px;
    height: 250px;
    margin-bottom: 2rem;
  }

  .circle-ring.ring-1 {
    width: 250px;
    height: 250px;
  }

  .circle-ring.ring-2 {
    width: 200px;
    height: 200px;
  }

  .circle-ring.ring-3 {
    width: 150px;
    height: 150px;
  }

  .circle-center {
    width: 120px;
    height: 120px;
  }

  .circle-center i {
    font-size: 3rem;
  }

  .hero-scroll-indicator {
    bottom: 30px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  position: relative;
  overflow: hidden;
}

.about-bg {
  background: linear-gradient(135deg, #4a3d5c 0%, #6b5b7d 100%);
  position: relative;
  padding: 80px 0;
}


.about-content {
  color: white;
  position: relative;
  z-index: 2;
}

.section-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  color: white;
}

.about-title .highlight {
  background: linear-gradient(45deg, #b19cd9, #c4a8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

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

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #9333ea, #b19cd9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.feature-content h4 {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

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

.about-visual {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.image-stack {
  height: 100%;
}

.image-item {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.main-image {
  top: 0;
  left: 0;
  width: 80%;
  z-index: 2;
}

.overlay-image {
  top: 20%;
  right: 0;
  width: 70%;
  z-index: 1;
}


.card-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.card-icon i {
  color: #333;
  font-size: 18px;
}

.card-content h5 {
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.card-content p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
}

.stats-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}


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

.cta-section h3 {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

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

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

.btn {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(45deg, #9333ea, #b19cd9);
  color: var(--contrast-color);
  border-color: #9333ea;
}

.btn-primary:hover {
  background: linear-gradient(45deg, #b19cd9, #9333ea);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(147, 51, 234, 0.3);
}

.btn-outline-primary {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-outline-primary:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(147, 51, 234, 0.3);
}

@media (max-width: 768px) {
  .about-title {
    font-size: 2rem;
  }
  
  .about-visual {
    min-height: 300px;
    margin-top: 40px;
  }
  
  .image-item {
    position: relative;
    width: 100% !important;
    margin-bottom: 20px;
  }
  

  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
}


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.features .icon-box:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: var(--contrast-color);
}

.features .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: var(--accent-color);
  margin-right: 15px;
  background: rgba(217, 119, 6, 0.1);
  padding: 15px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.features .icon-box:hover i {
  background: rgba(217, 119, 6, 0.2);
  transform: scale(1.1);
}

.features .icon-box p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Features Section */
.features {
  position: relative;
  padding: 140px 0;
  background: linear-gradient(180deg, #1a1f2e 0%, #1e2433 100%);
  overflow: hidden;
}

.features-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 25%, rgba(155, 126, 217, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(123, 154, 204, 0.15) 0%, transparent 50%);
  z-index: 0;
}

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

.features-intro {
  text-align: center;
  margin-bottom: 5rem;
}

.features-main-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--contrast-color);
  font-family: var(--heading-font);
  letter-spacing: -1px;
}

.features-intro-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(232, 232, 232, 0.8);
  max-width: 750px;
  margin: 0 auto;
}

/* Features Content */
.features-content {
  padding-right: 30px;
}

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

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

.features-title .highlight {
  background: linear-gradient(135deg, var(--accent-color), #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.features-showcase {
  display: grid;
  grid-template-columns: 1.3fr repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 2rem;
  margin-bottom: 5rem;
}

.feature-showcase-card {
  background: linear-gradient(135deg, rgba(42, 52, 65, 0.7), rgba(26, 31, 46, 0.7));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(155, 126, 217, 0.2);
  border-radius: 28px;
  padding: 2.5rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--heading-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.feature-showcase-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(155, 126, 217, 0.4);
  box-shadow: 0 25px 60px rgba(155, 126, 217, 0.25);
}

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

.feature-primary {
  grid-row: 1 / 3;
  padding: 3.5rem;
  background: linear-gradient(135deg, rgba(155, 126, 217, 0.15), rgba(123, 154, 204, 0.15));
  border-color: rgba(155, 126, 217, 0.3);
}

.showcase-icon-large {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  border-radius: 30px;
  opacity: 0.2;
  filter: blur(20px);
  animation: orb-pulse 4s ease-in-out infinite;
}

@keyframes orb-pulse {
  0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.4; transform: translate(-50%, -50%) scale(1.2); }
}

.showcase-icon-large i {
  position: relative;
  z-index: 1;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  border-radius: 30px;
  font-size: 4rem;
  color: var(--contrast-color);
  box-shadow: 0 15px 40px rgba(155, 126, 217, 0.4);
  transition: all 0.4s ease;
}

.feature-primary:hover .showcase-icon-large i {
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 20px 50px rgba(155, 126, 217, 0.6);
}

.showcase-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  border-radius: 18px;
  font-size: 2rem;
  color: var(--contrast-color);
  box-shadow: 0 8px 25px rgba(155, 126, 217, 0.3);
  transition: all 0.4s ease;
}

.feature-showcase-card:hover .showcase-icon {
  transform: translateY(-5px) rotate(5deg);
  box-shadow: 0 12px 35px rgba(155, 126, 217, 0.5);
}

.showcase-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 1.25rem;
  font-family: var(--heading-font);
}

.showcase-title-small {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.showcase-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(232, 232, 232, 0.85);
  margin-bottom: 2rem;
}

.showcase-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(232, 232, 232, 0.8);
  margin-bottom: 1.5rem;
}

.showcase-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.showcase-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(155, 126, 217, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(155, 126, 217, 0.2);
  transition: all 0.3s ease;
}

.showcase-feature-item:hover {
  background: rgba(155, 126, 217, 0.15);
  transform: translateX(5px);
}

.showcase-feature-item i {
  color: var(--success-color);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.showcase-feature-item span {
  color: rgba(232, 232, 232, 0.9);
  font-size: 1rem;
  font-weight: 500;
}

.showcase-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.showcase-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(232, 232, 232, 0.75);
  line-height: 1.6;
}

.showcase-list li i {
  color: var(--success-color);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Features CTA */
.features-cta-wrapper {
  margin-top: 5rem;
  text-align: center;
}

.cta-card {
  background: linear-gradient(135deg, rgba(155, 126, 217, 0.12), rgba(123, 154, 204, 0.12));
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 2px solid rgba(155, 126, 217, 0.3);
  border-radius: 32px;
  padding: 4rem 3rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(155, 126, 217, 0.15) 0%, transparent 70%);
  animation: rotate-bg 25s linear infinite;
}

.cta-icon {
  position: relative;
  z-index: 1;
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  border-radius: 50%;
  font-size: 3.5rem;
  color: var(--contrast-color);
  box-shadow: 0 15px 40px rgba(155, 126, 217, 0.4);
  animation: float-icon 4s ease-in-out infinite;
}

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

.cta-heading {
  position: relative;
  z-index: 1;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.cta-text {
  position: relative;
  z-index: 1;
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(232, 232, 232, 0.85);
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  color: var(--contrast-color);
  padding: 1.125rem 2.75rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 35px rgba(155, 126, 217, 0.4);
  border: 2px solid transparent;
}

.cta-btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 45px rgba(155, 126, 217, 0.6);
}

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

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

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(42, 52, 65, 0.6);
  color: var(--default-color);
  padding: 1.125rem 2.25rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(155, 126, 217, 0.3);
  backdrop-filter: blur(10px);
}

.cta-btn-secondary:hover {
  background: rgba(155, 126, 217, 0.15);
  border-color: var(--heading-color);
  color: var(--heading-color);
  transform: translateY(-3px);
}

/* Features Visual */
.features-visual {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-composition {
  position: relative;
  width: 100%;
  height: 500px;
}

.main-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.main-image {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.main-image-wrapper:hover .main-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(217, 119, 6, 0.2), rgba(0, 0, 0, 0.3));
  border-radius: 25px;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  animation: float 6s ease-in-out infinite;
}

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

.floating-card span {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

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

.card-2 {
  top: 50%;
  right: -20px;
  animation-delay: 2s;
}

.card-3 {
  bottom: 10%;
  left: 10%;
  animation-delay: 4s;
}

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

/* Responsive */
@media (max-width: 1200px) {
  .testimonials-showcase {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .features-showcase {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .feature-primary {
    grid-row: auto;
  }
}

@media (max-width: 992px) {
  .testimonials-main-title,
  .features-main-title {
    font-size: 2.75rem;
  }

  .features-showcase {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 100px 0;
  }

  .features {
    padding: 100px 0;
  }

  .testimonials-main-title,
  .features-main-title {
    font-size: 2.25rem;
  }

  .testimonials-intro-text,
  .features-intro-text {
    font-size: 1.1rem;
  }

  .testimonial-featured {
    padding: 2.5rem;
  }

  .featured-quote p {
    font-size: 1.15rem;
  }

  .feature-primary {
    padding: 2.5rem;
  }

  .showcase-title {
    font-size: 1.75rem;
  }

  .showcase-icon-large {
    width: 100px;
    height: 100px;
  }

  .showcase-icon-large i {
    width: 100px;
    height: 100px;
    font-size: 3.5rem;
  }

  .cta-card {
    padding: 3rem 2rem;
  }

  .cta-heading {
    font-size: 2rem;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Feature Details Section
--------------------------------------------------------------*/
.features-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 24px;
  padding: 40px;
  margin: 20px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.features-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6b5b7d, #8b7d9f, #9333ea);
  background-size: 200% 100%;
  animation: gradient-shift 3s ease-in-out infinite;
}

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

.features-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.features-item .row {
  align-items: center;
}

.features-item img {
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.features-item:hover img {
  transform: scale(1.05);
}

.features-item h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #6b5b7d 0%, #8b7d9f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.features-item h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #6b5b7d, #8b7d9f);
  border-radius: 2px;
}

.features-item .fst-italic {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}

.features-item .fst-italic::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 2rem;
  color: #b19cd9;
  font-family: serif;
}

.features-item p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

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

.features-item ul li {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.features-item ul li:hover::before {
  left: 100%;
}

.features-item ul li:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.features-item ul li i {
  font-size: 20px;
  color: #b19cd9;
  margin-right: 15px;
  width: 24px;
  text-align: center;
  background: rgba(102, 126, 234, 0.1);
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.features-item ul li:hover i {
  background: rgba(102, 126, 234, 0.2);
  transform: scale(1.1);
}

.features-item ul li span {
  font-weight: 500;
  line-height: 1.5;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .features-item {
    padding: 30px 20px;
    margin: 15px 0;
  }
  
  .features-item h3 {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .features-item h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .features-item .fst-italic {
    text-align: center;
    padding-left: 0;
  }
  
  .features-item .fst-italic::before {
    display: none;
  }
  
  .features-item ul li {
    padding: 12px 15px;
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .features-item {
    padding: 25px 15px;
  }
  
  .features-item h3 {
    font-size: 1.5rem;
  }
  
  .features-item ul li {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  position: relative;
  padding: 140px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  overflow: hidden;
}

.testimonials-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(155, 126, 217, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(123, 154, 204, 0.05) 0%, transparent 40%);
  z-index: 0;
}

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

.testimonials-intro {
  text-align: center;
  margin-bottom: 5rem;
}

.intro-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(155, 126, 217, 0.12), rgba(123, 154, 204, 0.12));
  border: 1px solid rgba(155, 126, 217, 0.25);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 2rem;
  color: var(--heading-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.intro-label i {
  color: var(--heading-color);
  font-size: 1rem;
}

.testimonials-main-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  font-family: var(--heading-font);
  letter-spacing: -1px;
}

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

.testimonials-intro-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(42, 52, 65, 0.7);
  max-width: 750px;
  margin: 0 auto;
}

.testimonials-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.testimonial-featured {
  background: linear-gradient(135deg, rgba(155, 126, 217, 0.05), rgba(123, 154, 204, 0.05));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(155, 126, 217, 0.2);
  border-radius: 32px;
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.testimonial-featured::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(155, 126, 217, 0.1) 0%, transparent 70%);
  animation: rotate-bg 20s linear infinite;
}

@keyframes rotate-bg {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.featured-quote-mark {
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  border-radius: 20px;
  opacity: 0.15;
}

.featured-quote-mark i {
  font-size: 3rem;
  color: var(--contrast-color);
}

.featured-quote {
  position: relative;
  z-index: 1;
  margin: 0 0 2.5rem 0;
}

.featured-quote p {
  font-size: 1.3rem;
  line-height: 1.9;
  color: rgba(42, 52, 65, 0.85);
  font-style: italic;
  margin: 0;
  font-weight: 400;
}

.featured-author {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(155, 126, 217, 0.15);
}

.featured-avatar {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.avatar-glow {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(10px);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.1); }
}

.featured-avatar i {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  border-radius: 50%;
  font-size: 3rem;
  color: var(--contrast-color);
}

.featured-info {
  flex: 1;
}

.featured-info h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 0.5rem 0;
  font-family: var(--heading-font);
}

.featured-info p {
  font-size: 1rem;
  color: rgba(42, 52, 65, 0.6);
  margin: 0 0 0.75rem 0;
}

.featured-stars {
  display: flex;
  gap: 0.25rem;
  color: #fbbf24;
  font-size: 1.1rem;
}

.featured-results {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.result-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--contrast-color);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  border: 1px solid rgba(155, 126, 217, 0.2);
  font-size: 0.9rem;
  color: rgba(42, 52, 65, 0.8);
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.result-tag i {
  color: var(--heading-color);
  font-size: 1.1rem;
}

.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-compact {
  background: var(--contrast-color);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(155, 126, 217, 0.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-compact::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--heading-color), var(--accent-color));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.testimonial-compact:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 35px rgba(155, 126, 217, 0.15);
  border-color: rgba(155, 126, 217, 0.3);
}

.testimonial-compact:hover::before {
  transform: scaleY(1);
}

.compact-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.compact-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.compact-avatar i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}

.compact-meta {
  flex: 1;
}

.compact-meta h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 0.25rem 0;
  font-family: var(--heading-font);
}

.compact-meta p {
  font-size: 0.85rem;
  color: rgba(42, 52, 65, 0.6);
  margin: 0;
}

.compact-rating {
  display: flex;
  gap: 0.2rem;
  color: #fbbf24;
  font-size: 0.9rem;
}

.compact-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(42, 52, 65, 0.75);
  margin: 0 0 1.25rem 0;
  font-style: italic;
}

.compact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(155, 126, 217, 0.1), rgba(123, 154, 204, 0.1));
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  color: rgba(42, 52, 65, 0.7);
  font-weight: 500;
}

.compact-badge i {
  color: var(--success-color);
  font-size: 1rem;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar-icon {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 1.25rem;
}

.testimonial-info {
  flex: 1;
}

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

.testimonial-role {
  margin: 0 0 0.5rem 0;
  color: var(--default-color);
  opacity: 0.7;
  font-size: 0.9rem;
}

.testimonial-info .stars {
  color: #fbbf24;
  font-size: 0.9rem;
}

.testimonial-content {
  flex: 1;
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  color: var(--default-color);
  line-height: 1.8;
  margin: 0;
  font-size: 0.95rem;
}

.quote-icon-left,
.quote-icon-right {
  color: var(--accent-color);
  opacity: 0.3;
  font-size: 1.5rem;
}

.quote-icon-left {
  margin-right: 0.5rem;
}

.quote-icon-right {
  margin-left: 0.5rem;
}

.testimonial-result {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(147, 51, 234, 0.1);
  border-radius: 8px;
  border-left: 3px solid var(--accent-color);
}

.testimonial-result i {
  color: var(--success-color);
  font-size: 1.1rem;
}

.testimonial-result span {
  color: var(--default-color);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Program Slides */
.program-slide {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(147, 51, 234, 0.1);
  transition: all 0.3s ease;
}

.program-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(147, 51, 234, 0.2);
  border-color: var(--accent-color);
}

.program-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

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

.program-slide h3 {
  color: var(--heading-color);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.program-subtitle {
  color: var(--default-color);
  opacity: 0.8;
  font-size: 1rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.program-content {
  flex: 1;
  margin-bottom: 2rem;
}

.program-feature {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.program-feature i {
  color: var(--success-color);
  font-size: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.program-feature strong {
  display: block;
  color: var(--heading-color);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.program-feature p {
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

.program-stats {
  display: flex;
  justify-content: space-around;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(147, 51, 234, 0.1);
  gap: 1rem;
}

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

.testimonials .testimonial-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, #f8f9fa 100%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  padding: 40px 35px 35px 80px;
  margin: 25px 15px;
  min-height: 220px;
  position: relative;
  border: 1px solid rgba(42, 93, 91, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.testimonials .testimonial-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
}

.testimonials .testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid var(--accent-color);
  position: absolute;
  left: -50px;
  top: 30px;
  background: var(--background-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--accent-color);
  font-weight: bold;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--heading-color);
  letter-spacing: 0.5px;
}

.testimonials .testimonial-item h4 {
  color: var(--accent-color);
  font-size: 14px;
  margin: 0 0 15px 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonials .testimonial-item .stars {
  margin: 15px 0;
  display: flex;
  gap: 3px;
}

.testimonials .testimonial-item .stars i {
  color: #ffd700;
  font-size: 16px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: var(--accent-color);
  font-size: 28px;
  line-height: 0;
  opacity: 0.7;
}

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

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

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 20px auto 15px auto;
  line-height: 1.6;
  color: var(--default-color);
  font-size: 15px;
  position: relative;
  z-index: 1;
}

.testimonials .testimonial-item p span {
  position: relative;
  z-index: 2;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 992px) {
  .pricing .featured .pricing-item {
    transform: scale(1.02, 1.1);
  }
}

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

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

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

/* New Pricing Card Styles */
/* Pricing Section */
.pricing {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(180deg, rgba(147, 51, 234, 0.05) 0%, var(--background-color) 100%);
  overflow: hidden;
}

.pricing-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.pricing-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-main-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.pricing-intro-text {
  font-size: 1.125rem;
  color: var(--default-color);
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Pricing Cards Grid */
.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.pricing-plan-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(147, 51, 234, 0.15);
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.pricing-plan-card:hover {
  transform: translateY(-8px);
  border-color: rgba(147, 51, 234, 0.4);
  box-shadow: 0 15px 40px rgba(147, 51, 234, 0.25);
}

.pricing-plan-card.plan-featured {
  border-color: rgba(147, 51, 234, 0.4);
  transform: scale(1.05);
  box-shadow: 0 10px 35px rgba(147, 51, 234, 0.3);
}

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

.featured-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(147, 51, 234, 0.4);
  z-index: 1;
}

.featured-badge i {
  font-size: 1rem;
}

.plan-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(147, 51, 234, 0.1);
}

.plan-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 1.5rem 0;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--default-color);
  opacity: 0.8;
}

.price-period {
  font-size: 1rem;
  color: var(--default-color);
  opacity: 0.7;
}

.plan-subtitle {
  font-size: 0.95rem;
  color: var(--default-color);
  opacity: 0.8;
  margin: 0;
}

.plan-features {
  flex: 1;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--default-color);
}

.feature-row.disabled {
  opacity: 0.5;
}

.feature-row i {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.feature-row .bi-check-circle-fill {
  color: var(--success-color);
}

.feature-row .bi-x-circle {
  color: var(--danger-color);
}

.feature-row span {
  line-height: 1.5;
}

.plan-footer {
  margin-top: auto;
}

.plan-btn {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--accent-color);
  border: 2px solid rgba(147, 51, 234, 0.3);
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.plan-btn:hover {
  border-color: var(--accent-color);
  background: rgba(147, 51, 234, 0.1);
  transform: translateY(-2px);
}

.plan-btn-featured {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  border: none;
  box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

.plan-btn-featured:hover {
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
  transform: translateY(-2px);
}

.plan-note {
  font-size: 0.875rem;
  color: var(--default-color);
  opacity: 0.7;
  text-align: center;
  margin: 1rem 0 0;
}

/* Pricing Guarantee */
.pricing-guarantee {
  margin-top: 4rem;
}

.guarantee-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(147, 51, 234, 0.2);
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.guarantee-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.guarantee-content {
  flex: 1;
}

.guarantee-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 1rem 0;
}

.guarantee-text {
  font-size: 1.125rem;
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.7;
  margin: 0 0 2rem;
}

.guarantee-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.guarantee-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--default-color);
}

.guarantee-badge-item i {
  color: var(--success-color);
  font-size: 1.1rem;
}

.guarantee-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.guarantee-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

.guarantee-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
}

.guarantee-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--accent-color);
  border: 2px solid rgba(147, 51, 234, 0.3);
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.guarantee-btn-secondary:hover {
  border-color: var(--accent-color);
  background: rgba(147, 51, 234, 0.1);
}

/* Responsive */
@media (max-width: 1199px) {
  .pricing-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-plan-card.plan-featured {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .pricing {
    padding: 4rem 0;
  }

  .pricing-main-title {
    font-size: 2rem;
  }

  .pricing-cards-grid {
    grid-template-columns: 1fr;
  }

  .pricing-plan-card.plan-featured {
    grid-column: 1;
    transform: scale(1);
  }

  .pricing-plan-card {
    padding: 2rem;
  }

  .guarantee-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .guarantee-icon {
    margin: 0 auto;
  }

  .guarantee-title {
    font-size: 1.75rem;
  }

  .guarantee-actions {
    flex-direction: column;
  }

  .guarantee-btn-primary,
  .guarantee-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Legal Info Styles */
.legal-info {
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.6;
}

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

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

.legal-info-section {
  background: var(--surface-color);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  border-left: 4px solid var(--accent-color);
}

.legal-info-section h3 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.legal-info-section p {
  margin-bottom: 0.5rem;
}

.stats-section {
  margin: 2rem 0;
}


/*--------------------------------------------------------------
# New Features Section Styles
--------------------------------------------------------------*/
.feature-box {
  background: var(--surface-color);
  padding: 2.5rem;
  border-radius: 16px;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
  border-color: var(--accent-color);
}

.feature-icon-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

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

.feature-icon-box i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.feature-box h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-box p,
.feature-description {
  color: var(--default-color);
  opacity: 0.9;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

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

.feature-list li {
  padding: 0.5rem 0;
  color: var(--default-color);
  opacity: 0.8;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.feature-list li i {
  color: var(--success-color);
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

.features-cta-box {
  background: var(--surface-color);
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(147, 51, 234, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features-cta-box h3 {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.features-cta-box .lead {
  color: var(--default-color);
  opacity: 0.9;
  font-size: 1.1rem;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# How It Works Section Styles
--------------------------------------------------------------*/
.how-it-works {
  position: relative;
}

.step-card {
  background: var(--surface-color);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
  border-color: var(--accent-color);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--contrast-color);
  box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(177, 156, 217, 0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 1.5rem;
  transition: all 0.3s ease;
}

.step-card:hover .step-icon {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  transform: scale(1.1);
}

.step-icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.step-card:hover .step-icon i {
  color: var(--contrast-color);
}

.step-card h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.step-card p {
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.7;
  margin: 0;
}

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

.faq .faq-container .faq-item {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.3s;
}

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

.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 {

  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info {
  background: var(--surface-color);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact .contact-info h3 {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact .info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.contact .info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  color: var(--accent-color);
}

.contact .info-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

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

.contact .info-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.contact .info-content p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: var(--default-color);
}

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

.contact .info-content a:hover {
  color: var(--heading-color);
  text-decoration: underline;
}

.contact .social-links {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .social-links h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.contact .social-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contact .social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s;
}

.contact .social-icons a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact .social-icons a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.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 .contact-form-wrapper {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact .php-email-form {
  background: transparent;
  padding: 0;
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form input[type=tel],
.contact .php-email-form textarea,
.contact .php-email-form select {
  font-size: 14px;
  padding: 12px 15px;
  box-shadow: none;
  border-radius: 8px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: border-color 0.3s;
}

.contact .php-email-form .form-label {
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 8px;
  font-size: 14px;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form input[type=tel]:focus,
.contact .php-email-form textarea:focus,
.contact .php-email-form select:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

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

.contact .form-check {
  margin-top: 10px;
}

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

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

.contact .form-check-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 14px 40px;
  transition: all 0.3s;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--heading-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact .php-email-form button[type=submit] svg {
  margin-right: 8px;
}


/*--------------------------------------------------------------
# Success Stories Section
--------------------------------------------------------------*/
/* Success Stories Section */
.success-stories {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--background-color) 0%, rgba(147, 51, 234, 0.05) 100%);
  overflow: hidden;
}

.success-stories-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.success-stories-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.intro-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(147, 51, 234, 0.1);
  border: 1px solid rgba(147, 51, 234, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.intro-label i {
  font-size: 1rem;
}

.success-stories-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.success-stories-subtitle {
  font-size: 1.125rem;
  color: var(--default-color);
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}


/* Success Stories Grid */
.success-stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.success-story-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(147, 51, 234, 0.15);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.success-story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.success-story-card:hover {
  transform: translateY(-8px);
  border-color: rgba(147, 51, 234, 0.4);
  box-shadow: 0 15px 40px rgba(147, 51, 234, 0.25);
}

.story-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(147, 51, 234, 0.1);
}

.story-avatar-large {
  position: relative;
  width: 80px;
  height: 80px;
  min-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-ring {
  position: absolute;
  inset: -4px;
  border: 2px solid rgba(147, 51, 234, 0.3);
  border-radius: 50%;
  animation: ring-pulse 2s ease-in-out infinite;
}

.story-avatar-large i {
  font-size: 4rem;
  color: var(--accent-color);
  z-index: 1;
}

.story-header-content {
  flex: 1;
}

.story-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 0.5rem 0;
}

.story-role {
  font-size: 0.95rem;
  color: var(--default-color);
  opacity: 0.7;
  margin: 0 0 1rem 0;
}

.story-achievement {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(147, 51, 234, 0.15);
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-color);
}

.story-achievement i {
  font-size: 1rem;
}

.story-card-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.3;
}

.story-text {
  font-size: 1rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.8;
  margin: 0;
}

.story-milestones {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.milestone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(147, 51, 234, 0.05);
  border-radius: 10px;
  border-left: 3px solid var(--accent-color);
}

.milestone i {
  color: var(--accent-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.milestone span {
  font-size: 0.95rem;
  color: var(--default-color);
  font-weight: 500;
}

/* Success Stories CTA */
.success-stories-cta {
  margin-top: 4rem;
}

.stories-cta-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(147, 51, 234, 0.2);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
}

.stories-cta-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 1rem 0;
}

.stories-cta-text {
  font-size: 1.125rem;
  color: var(--default-color);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.stories-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.stories-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

.stories-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
}

.stories-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--accent-color);
  border: 2px solid rgba(147, 51, 234, 0.3);
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.stories-btn-secondary:hover {
  border-color: var(--accent-color);
  background: rgba(147, 51, 234, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
  .success-stories-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .success-stories {
    padding: 4rem 0;
  }

  .success-stories-title {
    font-size: 2rem;
  }


  .success-story-card {
    padding: 2rem;
  }

  .story-card-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .stories-cta-card {
    padding: 2rem 1.5rem;
  }

  .stories-cta-title {
    font-size: 1.75rem;
  }

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

  .stories-btn-primary,
  .stories-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

#cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: linear-gradient(135deg, #2d2738 0%, #1a1626 100%);
  color: var(--default-color);
  border: 1px solid rgba(147, 51, 234, 0.3);
  padding: 0;
  font-family: var(--default-font);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(147, 51, 234, 0.1);
  border-radius: 16px;
  font-size: 14px;
  max-width: 500px;
  width: calc(100% - 40px);
  z-index: 1000;
  display: none;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#cookie-popup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  z-index: 1;
}

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

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

#cookie-popup .popup-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.75rem;
  position: relative;
}

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

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

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

#cookie-popup button {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--heading-color) 100%);
  color: var(--contrast-color);
  border: none;
  padding: 0.875rem 1.75rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-end;
  box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

#cookie-popup button:hover {
  background: linear-gradient(135deg, var(--heading-color) 0%, var(--accent-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(147, 51, 234, 0.4);
}

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

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

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

#cookie-popup .popup-message a:hover {
  color: #0056b3;
}

/* Cookie Popup Responsive Styles */
@media (max-width: 768px) {
  #cookie-popup {
    bottom: 20px;
    left: 20px;
    right: 20px;
    width: auto;
    max-width: none;
    transform: translateY(100px);
    border-radius: 12px;
    font-size: 13px;
  }

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

  #cookie-popup .popup-content {
    padding: 1.25rem;
    gap: 1rem;
  }

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

  #cookie-popup p {
    font-size: 13px;
    line-height: 1.5;
  }

  #cookie-popup button {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    align-self: stretch;
  }
}

@media (max-width: 480px) {
  #cookie-popup {
    bottom: 10px;
    left: 10px;
    right: 10px;
    border-radius: 10px;
    font-size: 12px;
  }

  #cookie-popup .popup-content {
    padding: 1rem;
    gap: 0.875rem;
  }

  #cookie-popup p {
    font-size: 12px;
  }

  #cookie-popup button {
    padding: 0.625rem 1.25rem;
    font-size: 0.85rem;
  }
}


/*--------------------------------------------------------------
# Page Title Section
--------------------------------------------------------------*/
.page-title {
  background: linear-gradient(135deg, var(--background-color) 0%, var(--surface-color) 100%);
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
}

.page-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  opacity: 0.3;
}

.page-title h1 {
  color: var(--heading-color);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.page-title p {
  color: var(--default-color);
  font-size: 1.1rem;
  margin: 0;
  position: relative;
  z-index: 2;
}

/*--------------------------------------------------------------
# Content Styling
--------------------------------------------------------------*/
.content {
  color: var(--default-color);
  line-height: 1.8;
}

.content h2 {
  color: var(--heading-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-color);
}

.content h3 {
  color: var(--accent-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
}

.content h4 {
  color: var(--heading-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem 0;
}

.content p {
  margin-bottom: 1.2rem;
  color: var(--default-color);
}

.content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.content ul li {
  margin-bottom: 0.5rem;
  color: var(--default-color);
}

.content .contact-info {
  background: rgba(147, 51, 234, 0.1);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(147, 51, 234, 0.2);
  margin: 2rem 0;
}

.content .contact-info p {
  margin-bottom: 0.5rem;
}

.content .contact-info strong {
  color: var(--accent-color);
}

.content .alert {
  border-radius: 15px;
  border: none;
  padding: 25px;
  margin: 2rem 0;
}

.content .alert-info {
  background: rgba(116, 192, 252, 0.1);
  color: var(--info-color);
  border: 1px solid rgba(116, 192, 252, 0.2);
}

.content .alert-warning {
  background: rgba(255, 212, 59, 0.1);
  color: var(--warning-color);
  border: 1px solid rgba(255, 212, 59, 0.2);
}

.content .alert h4 {
  color: inherit;
  margin-bottom: 1rem;
  border-bottom: none;
}

.content .cookie-settings {
  background: rgba(147, 51, 234, 0.05);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(147, 51, 234, 0.1);
  text-align: center;
  margin: 2rem 0;
}

.content .cookie-settings h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  border-bottom: none;
}

.content .cookie-settings p {
  margin-bottom: 1.5rem;
}

.content .cookie-settings .btn {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(147, 51, 234, 0.3);
}

.content .cookie-settings .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Responsive Adjustments for Content Pages
--------------------------------------------------------------*/
@media (max-width: 767px) {
  .page-title h1 {
    font-size: 2rem;
  }
  
  .page-title p {
    font-size: 1rem;
  }
  
  .content h2 {
    font-size: 1.5rem;
  }
  
  .content h3 {
    font-size: 1.3rem;
  }
  
  .content h4 {
    font-size: 1.1rem;
  }
  
  .content .contact-info,
  .content .cookie-settings {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .page-title {
    padding: 60px 0 30px;
  }
  
  .page-title h1 {
    font-size: 1.8rem;
  }
  
  .content h2 {
    font-size: 1.4rem;
  }
  
  .content h3 {
    font-size: 1.2rem;
  }
}

/*--------------------------------------------------------------
# Nueva Sección: Recursos Educativos
--------------------------------------------------------------*/
.recursos {
  background: linear-gradient(135deg, var(--background-color) 0%, var(--surface-color) 100%);
  position: relative;
  overflow: hidden;
}

.recursos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  opacity: 0.3;
}

.recurso-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(147, 51, 234, 0.1);
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

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

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

.recurso-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(147, 51, 234, 0.2);
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.08);
}

.recurso-card.featured {
  border-color: var(--accent-color);
  transform: scale(1.05);
  background: rgba(147, 51, 234, 0.05);
}

.recurso-card.featured::before {
  transform: scaleX(1);
}

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

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

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

.recurso-card h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.recurso-card h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  border-radius: 2px;
}

.recurso-card p {
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 1rem;
}

.recurso-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 25px;
}

.feature-tag {
  background: rgba(147, 51, 234, 0.1);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(78, 205, 196, 0.2);
  transition: all 0.3s ease;
}

.recurso-card:hover .feature-tag {
  background: rgba(147, 51, 234, 0.2);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.recurso-btn {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(147, 51, 234, 0.3);
}

.recurso-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
  color: var(--contrast-color);
}

/* Estadísticas */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}


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

/*--------------------------------------------------------------
# Footer - Nuevo Diseño
--------------------------------------------------------------*/
.footer {
  background: var(--surface-color);
  padding: 80px 0 30px;
  color: var(--default-color);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  opacity: 0.3;
}

.footer-newsletter {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  padding: 60px 0;
  margin-bottom: 60px;
  border-radius: 25px;
  margin: 0 20px 60px 20px;
  position: relative;
  z-index: 2;
}

.footer-newsletter h4 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

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

.footer-newsletter .newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px;
  border-radius: 50px;
  backdrop-filter: blur(20px);
}

.footer-newsletter input[type="email"] {
  flex: 1;
  padding: 15px 25px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--background-color);
}

.footer-newsletter input[type="submit"] {
  background: var(--contrast-color);
  color: var(--heading-color);
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-newsletter input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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



.footer-about .footer-contact p {
  margin: 0;
  line-height: 1.6;
  margin-bottom: 10px;
}

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

.footer-links h4 {
  color: var(--heading-color);
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
}

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

.footer-links ul li {
  padding: 8px 0;
}

.footer-links ul li i {
  color: var(--accent-color);
  margin-right: 8px;
  font-size: 0.9rem;
}

.footer-links ul li a {
  color: var(--default-color);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  background: var(--background-color);
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid rgba(147, 51, 234, 0.1);
  position: relative;
  z-index: 2;
}

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

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

/*--------------------------------------------------------------
# Responsive Design - Mejorado
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .hero h2 {
    font-size: 3.5rem;
  }
  
  .about-title {
    font-size: 3rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero h2 {
    font-size: 3rem;
  }
  
  .about-title {
    font-size: 2.5rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-icon {
    margin: 0 auto 20px;
  }
}

/*--------------------------------------------------------------
# About Page Styles
--------------------------------------------------------------*/

/* About Hero Section */
.about-hero-section {
  padding: 80px 0;
  background: var(--background-color);
}

.about-hero-content {
  position: relative;
}

.section-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(147, 51, 234, 0.15);
  color: var(--accent-color);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(147, 51, 234, 0.3);
}

.section-badge-new i {
  font-size: 0.9rem;
}

.about-hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--contrast-color);
  font-family: var(--heading-font);
}

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

.about-hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.about-feature-item {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.about-feature-item:hover {
  background: rgba(147, 51, 234, 0.15);
  border-color: rgba(147, 51, 234, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: transform 0.3s ease;
}

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

.about-feature-icon i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}

.about-feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 0.75rem;
  font-family: var(--heading-font);
}

.about-feature-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.about-hero-visual {
  position: relative;
}

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

.about-hero-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

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

.image-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(177, 156, 217, 0.05) 100%);
  pointer-events: none;
}

/* Mission Section */
.about-mission-section {
  padding: 80px 0;
  background: var(--surface-color);
}

.mission-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
}

.mission-card:hover {
  background: rgba(147, 51, 234, 0.1);
  border-color: rgba(147, 51, 234, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.mission-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mission-icon i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}

.mission-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.mission-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Values Section */
.about-values-section {
  padding: 80px 0;
  background: var(--background-color);
}

.section-header-center {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title-center {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin-top: 1rem;
  font-family: var(--heading-font);
}

.value-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.value-card:hover {
  background: rgba(147, 51, 234, 0.15);
  border-color: rgba(147, 51, 234, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

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

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

.value-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 0.75rem;
  font-family: var(--heading-font);
}

.value-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Team & Legal Section */
.about-team-section {
  padding: 80px 0;
  background: var(--surface-color);
}

.team-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.team-header {
  margin-bottom: 1.5rem;
}

.team-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin-top: 1rem;
  font-family: var(--heading-font);
}

.team-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.legal-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.legal-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.legal-header h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--contrast-color);
  margin: 0;
  font-family: var(--heading-font);
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-item:last-child {
  border-bottom: none;
}

.legal-item strong {
  color: var(--heading-color);
  font-size: 0.85rem;
}

/* Modern Mission Section Styles */
.mission-card-modern {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mission-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
}

.mission-card-modern:hover {
  background: rgba(233, 30, 99, 0.15);
  border-color: rgba(233, 30, 99, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.mission-header-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.mission-icon-modern i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}

.mission-title-modern {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin: 0;
  font-family: var(--heading-font);
}

.mission-content-modern {
  position: relative;
}

.mission-text-modern {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.mission-list-modern {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mission-list-modern li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.mission-list-modern li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Modern Values Section Styles */
.value-card-modern {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.value-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-card-modern:hover::before {
  opacity: 1;
}

.value-card-modern:hover {
  background: rgba(233, 30, 99, 0.15);
  border-color: rgba(233, 30, 99, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.value-icon-modern {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.value-icon-bg {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

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

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

.value-title-modern {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.value-text-modern {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.section-description-center {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Modern Team Section Styles */
.team-card-modern {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  transition: all 0.3s ease;
}

.team-card-modern:hover {
  background: rgba(233, 30, 99, 0.1);
  border-color: rgba(233, 30, 99, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.team-header-modern {
  margin-bottom: 2rem;
}

.team-title-modern {
  font-size: 2rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin-top: 1rem;
  font-family: var(--heading-font);
  line-height: 1.3;
}

.team-content-modern {
  position: relative;
}

.team-text-modern {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.team-features-modern {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.team-feature-item-modern {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

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

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

.team-feature-content-modern {
  flex: 1;
}

.team-feature-title-modern {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
}

.team-feature-text-modern {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Modern Legal Card Styles */
.legal-card-modern {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  transition: all 0.3s ease;
}

.legal-card-modern:hover {
  background: rgba(233, 30, 99, 0.1);
  border-color: rgba(233, 30, 99, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.legal-header-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-icon-modern {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legal-icon-modern i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.legal-title-modern {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--contrast-color);
  margin: 0;
  font-family: var(--heading-font);
}

.legal-content-modern {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.legal-item-modern {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-item-modern:last-child {
  border-bottom: none;
}

.legal-label-modern {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--heading-color);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.legal-label-modern i {
  font-size: 1rem;
  color: var(--accent-color);
}

.legal-value-modern {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-value-modern:hover {
  color: var(--accent-color);
}

/* Services Page Styles */
.services-start-section {
  padding: 80px 0;
  background: var(--background-color);
}

.services-hero-content {
  position: relative;
}

.services-hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--contrast-color);
  font-family: var(--heading-font);
}

.services-hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.85);
}


.services-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-visual-card {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 400px;
}

.services-visual-card:hover {
  background: rgba(233, 30, 99, 0.15);
  border-color: rgba(233, 30, 99, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.visual-icon-large {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

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

.visual-icon-large i {
  font-size: 3rem;
  color: var(--contrast-color);
}

.services-visual-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 0.75rem;
  font-family: var(--heading-font);
}

.services-visual-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.services-haupt-section {
  padding: 80px 0;
  background: var(--surface-color);
}

.service-card-modern {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card-modern:hover::before {
  opacity: 1;
}

.service-card-modern:hover {
  background: rgba(233, 30, 99, 0.15);
  border-color: rgba(233, 30, 99, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-header-modern {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.service-icon-modern {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

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

.service-icon-modern i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}

.service-title-modern {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin: 0;
  font-family: var(--heading-font);
}

.service-description-modern {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features-modern {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-features-modern li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.service-features-modern li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.service-footer-modern {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-link-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.service-link-modern:hover {
  color: var(--heading-color);
  gap: 0.75rem;
}

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

.service-link-modern:hover i {
  transform: translateX(3px);
}

.services-aktion-section {
  padding: 80px 0;
  background: var(--background-color);
}

.services-cta-content {
  position: relative;
}

.services-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  color: var(--contrast-color);
  font-family: var(--heading-font);
}

.services-cta-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.services-cta-buttons .btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .mission-card-modern,
  .team-card-modern,
  .legal-card-modern {
    padding: 1.5rem;
  }

  .mission-title-modern,
  .team-title-modern {
    font-size: 1.5rem;
  }

  .value-card-modern {
    padding: 1.5rem;
  }

  .section-title-center {
    font-size: 2rem;
  }

  .about-features-grid {
    grid-template-columns: 1fr;
  }

  .services-hero-title {
    font-size: 2rem;
  }


  .service-card-modern {
    padding: 1.5rem;
  }

  .service-title-modern {
    font-size: 1.25rem;
  }

  .services-cta-title {
    font-size: 2rem;
  }

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

  .services-cta-buttons .btn-lg {
    width: 100%;
  }
}

.legal-item span,
.legal-item a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  text-decoration: none;
}

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

@media (max-width: 991px) {
  .about-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 767px) {
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .about-features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .about-title {
    font-size: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .recurso-card {
    padding: 30px 20px;
  }
  
  .footer-newsletter .newsletter-form {
    flex-direction: column;
    background: transparent;
    padding: 0;
  }
  
  .footer-newsletter input[type="submit"] {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .hero {
    padding: 80px 0 40px;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .about-title {
    font-size: 1.8rem;
  }
  
  .recurso-card {
    padding: 25px 15px;
  }
  
  .feature-item {
    padding: 20px 15px;
  }
}

/*--------------------------------------------------------------
# New Page Title Styles (for About, Contact, FAQ)
--------------------------------------------------------------*/
.page-title-new {
  position: relative;
  padding: 6rem 0 4rem;
  background: linear-gradient(180deg, var(--background-color) 0%, rgba(147, 51, 234, 0.05) 100%);
  overflow: hidden;
}

.page-title-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(147, 51, 234, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-title-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-title-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(147, 51, 234, 0.1);
  border: 1px solid rgba(147, 51, 234, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.page-title-badge i {
  font-size: 1rem;
}

.page-title-heading {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
}

.page-title-description {
  font-size: 1.125rem;
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.7;
  margin: 0;
}

/*--------------------------------------------------------------
# About Page Styles
--------------------------------------------------------------*/
.about-hero-new {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(147, 51, 234, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-hero-content-new {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(147, 51, 234, 0.1);
  border: 1px solid rgba(147, 51, 234, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-color);
  width: fit-content;
}

.about-badge-new i {
  font-size: 1rem;
}

.about-hero-title-new {
  font-size: 3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.2;
}

.about-hero-text-new {
  font-size: 1.125rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.8;
  margin: 0;
}

.about-features-new {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.about-feature-item-new {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(147, 51, 234, 0.15);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.about-feature-item-new:hover {
  transform: translateX(5px);
  border-color: rgba(147, 51, 234, 0.4);
  box-shadow: 0 8px 25px rgba(147, 51, 234, 0.15);
}

.about-feature-icon-new {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-feature-icon-new i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}

.about-feature-content-new h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 0.5rem 0;
}

.about-feature-content-new p {
  font-size: 0.95rem;
  color: var(--default-color);
  opacity: 0.8;
  margin: 0;
  line-height: 1.6;
}

.about-hero-visual-new {
  position: relative;
}

.about-image-wrapper-new {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(147, 51, 234, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 24px;
  opacity: 0.2;
  filter: blur(20px);
  z-index: -1;
}

.about-image-placeholder {
  font-size: 8rem;
  color: var(--accent-color);
  opacity: 0.3;
  animation: float-icon 3s ease-in-out infinite;
}

/* Mission & Vision */
.about-mission-new {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.about-mission-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(147, 51, 234, 0.05) 0%, var(--background-color) 100%);
  pointer-events: none;
}

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

.section-title-new {
  font-size: 3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 1.5rem 0 0 0;
  line-height: 1.2;
}

.section-description-new {
  font-size: 1.125rem;
  color: var(--default-color);
  opacity: 0.8;
  margin: 1rem 0 0 0;
  line-height: 1.7;
}

.mission-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.mission-card-new {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(147, 51, 234, 0.15);
  border-radius: 24px;
  padding: 3rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mission-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.mission-card-new:hover {
  transform: translateY(-5px);
  border-color: rgba(147, 51, 234, 0.4);
  box-shadow: 0 15px 40px rgba(147, 51, 234, 0.25);
}

.mission-icon-wrapper-new {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.mission-icon-wrapper-new i {
  font-size: 2.5rem;
  color: var(--contrast-color);
}

.mission-title-new {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 1.5rem 0;
}

.mission-text-new {
  font-size: 1rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.8;
  margin: 0 0 2rem 0;
}

.mission-list-new {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mission-list-new li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--default-color);
}

.mission-list-new li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* Values */
.about-values-new {
  padding: 6rem 0;
}

.values-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card-new {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(147, 51, 234, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.value-card-new:hover {
  transform: translateY(-8px);
  border-color: rgba(147, 51, 234, 0.4);
  box-shadow: 0 15px 40px rgba(147, 51, 234, 0.25);
}

.value-icon-wrapper-new {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

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

.value-icon-wrapper-new i {
  font-size: 2.5rem;
  color: var(--contrast-color);
}

.value-title-new {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 1rem 0;
}

.value-text-new {
  font-size: 0.95rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.7;
  margin: 0;
}

/* Team & Legal */
.about-team-new {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.about-team-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, var(--background-color) 0%, rgba(147, 51, 234, 0.05) 100%);
  pointer-events: none;
}

.team-grid-new {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.team-card-new {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(147, 51, 234, 0.15);
  border-radius: 24px;
  padding: 3rem;
}

.team-title-new {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 1.5rem 0 1.5rem 0;
  line-height: 1.2;
}

.team-text-new {
  font-size: 1.125rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.8;
  margin: 0 0 2rem 0;
}

.team-features-new {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.team-feature-item-new {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.team-feature-icon-new {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-feature-icon-new i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}

.team-feature-content-new h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 0.5rem 0;
}

.team-feature-content-new p {
  font-size: 0.95rem;
  color: var(--default-color);
  opacity: 0.8;
  margin: 0;
  line-height: 1.6;
}

.legal-card-new {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(147, 51, 234, 0.15);
  border-radius: 24px;
  padding: 2.5rem;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.legal-header-new {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(147, 51, 234, 0.1);
}

.legal-icon-new {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legal-icon-new i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}

.legal-title-new {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
}

.legal-content-new {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.legal-item-new {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-label-new {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--default-color);
  opacity: 0.7;
}

.legal-label-new i {
  color: var(--accent-color);
  font-size: 1rem;
}

.legal-value-new {
  font-size: 0.95rem;
  color: var(--default-color);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-value-new:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Page Styles
--------------------------------------------------------------*/
.contact-new {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(147, 51, 234, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.contact-header-new {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.contact-title-new {
  font-size: 3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.contact-subtitle-new {
  font-size: 1.125rem;
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.contact-grid-new {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.contact-info-card-new {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(147, 51, 234, 0.15);
  border-radius: 24px;
  padding: 3rem;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.contact-info-title-new {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 1rem 0;
}

.contact-info-text-new {
  font-size: 0.95rem;
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.7;
  margin: 0 0 2rem 0;
}

.contact-info-items-new {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-info-item-new {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-info-icon-new {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.contact-info-content-new h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 0.5rem 0;
}

.contact-info-content-new p {
  font-size: 0.95rem;
  color: var(--default-color);
  opacity: 0.8;
  margin: 0;
  line-height: 1.6;
}

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

.contact-info-content-new a:hover {
  opacity: 0.8;
}

.contact-info-note {
  font-size: 0.875rem;
  opacity: 0.6;
}

.contact-social-new {
  padding-top: 2rem;
  border-top: 1px solid rgba(147, 51, 234, 0.1);
}

.contact-social-new h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 1rem 0;
}

.contact-social-icons-new {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.contact-social-link-new {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(147, 51, 234, 0.2);
  border-radius: 12px;
  color: var(--default-color);
  opacity: 0.7;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.contact-social-link-new:hover {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  opacity: 1;
  transform: translateY(-3px);
  border-color: var(--accent-color);
  box-shadow: 0 8px 20px rgba(147, 51, 234, 0.3);
}

.contact-form-card-new {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(147, 51, 234, 0.15);
  border-radius: 24px;
  padding: 3rem;
}

.contact-form-header-new {
  margin-bottom: 2.5rem;
}

.contact-form-title-new {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 1rem 0;
}

.contact-form-text-new {
  font-size: 0.95rem;
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.7;
  margin: 0;
}

.contact-form-wrapper-new {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group-new {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label-new {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heading-color);
}

.form-input-new {
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(147, 51, 234, 0.2);
  border-radius: 12px;
  color: var(--default-color);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-input-new:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

.form-input-new::placeholder {
  color: var(--default-color);
  opacity: 0.5;
}

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

.form-check-new {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox-new {
  width: 20px;
  height: 20px;
  margin-top: 0.125rem;
  cursor: pointer;
  accent-color: var(--accent-color);
}

.form-check-label-new {
  font-size: 0.875rem;
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.6;
}

.form-check-label-new a {
  color: var(--accent-color);
  text-decoration: none;
}

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

.form-submit-new {
  margin-top: 1rem;
}

.contact-submit-btn-new {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

.contact-submit-btn-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
}

/*--------------------------------------------------------------
# FAQ Page Styles
--------------------------------------------------------------*/
.faq-section-new {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.faq-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 20%, rgba(147, 51, 234, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.faq-container-new {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.faq-item-new {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(147, 51, 234, 0.15);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item-new:hover {
  border-color: rgba(147, 51, 234, 0.4);
  box-shadow: 0 8px 25px rgba(147, 51, 234, 0.15);
}

.faq-item-new.faq-active-new {
  border-color: rgba(147, 51, 234, 0.4);
  box-shadow: 0 10px 30px rgba(147, 51, 234, 0.2);
}

.faq-item-new.faq-active-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  border-radius: 20px 20px 0 0;
}

.faq-header-new {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.faq-icon-wrapper-new {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon-wrapper-new i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.faq-question-new {
  flex: 1;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.4;
}

.faq-toggle-new {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(147, 51, 234, 0.1);
  border: 1px solid rgba(147, 51, 234, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.faq-item-new.faq-active-new .faq-toggle-new {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  transform: rotate(180deg);
}

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

.faq-item-new.faq-active-new .faq-content-new {
  max-height: 500px;
  padding: 1.5rem 0 0 0;
}

.faq-content-new p {
  font-size: 1rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.8;
  margin: 0;
  padding-left: 66px;
}

/* Responsive */
@media (max-width: 1199px) {
  .about-hero-grid,
  .team-grid-new,
  .contact-grid-new {
    grid-template-columns: 1fr;
  }

  .mission-grid-new {
    grid-template-columns: 1fr;
  }

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

  .legal-card-new,
  .contact-info-card-new {
    position: static;
  }
}

@media (max-width: 768px) {
  .page-title-heading {
    font-size: 2.5rem;
  }

  .about-hero-title-new,
  .section-title-new,
  .contact-title-new {
    font-size: 2rem;
  }

  .values-grid-new {
    grid-template-columns: 1fr;
  }

  .form-row-new {
    grid-template-columns: 1fr;
  }

  .faq-content-new p {
    padding-left: 0;
  }
}

/*--------------------------------------------------------------
# Completely Redesigned About, Contact, FAQ Pages
--------------------------------------------------------------*/

/* About Page Hero */
.about-page-hero {
  position: relative;
  padding: 8rem 0 6rem;
  background: linear-gradient(180deg, var(--background-color) 0%, rgba(147, 51, 234, 0.08) 100%);
  overflow: hidden;
}

.about-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(147, 51, 234, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.about-hero-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-hero-badge-wrapper {
  margin-bottom: 2rem;
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(147, 51, 234, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-color);
}

.about-hero-badge i {
  font-size: 1.25rem;
}

.about-hero-main-title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 2rem 0;
  line-height: 1.1;
  letter-spacing: -1px;
}

.about-gradient-text {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-description {
  font-size: 1.25rem;
  color: var(--default-color);
  opacity: 0.85;
  line-height: 1.8;
  margin: 0;
}

/* About Story Section */
.about-geschichte-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.about-story-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 40%, rgba(147, 51, 234, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 85% 60%, rgba(99, 102, 241, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.about-story-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-story-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-story-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(147, 51, 234, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-color);
  width: fit-content;
}

.about-story-label i {
  font-size: 1.25rem;
}

.about-story-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.about-story-text-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-story-text-block p {
  font-size: 1.125rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.9;
  margin: 0;
}

.about-story-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.about-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(147, 51, 234, 0.2);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.about-highlight-item:hover {
  transform: translateX(8px);
  border-color: rgba(147, 51, 234, 0.5);
  box-shadow: 0 10px 30px rgba(147, 51, 234, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.about-highlight-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(147, 51, 234, 0.3);
}

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

.about-highlight-info h4 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 0.75rem 0;
}

.about-highlight-info p {
  font-size: 1rem;
  color: var(--default-color);
  opacity: 0.85;
  margin: 0;
  line-height: 1.7;
}

.about-story-visual {
  position: relative;
}

.about-visual-container {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(147, 51, 234, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual-glow {
  position: absolute;
  inset: -10px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 30px;
  opacity: 0.25;
  filter: blur(30px);
  z-index: -1;
  animation: orb-pulse 4s ease-in-out infinite;
}

.about-visual-icon {
  font-size: 10rem;
  color: var(--accent-color);
  opacity: 0.4;
  animation: lotus-rotate 8s ease-in-out infinite;
}

/* Mission Vision Section */
.about-ziel-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.about-mv-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(147, 51, 234, 0.08) 0%, var(--background-color) 50%, rgba(99, 102, 241, 0.08) 100%);
  pointer-events: none;
}

.about-mv-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.about-mv-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(147, 51, 234, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 2rem;
}

.about-mv-badge i {
  font-size: 1.25rem;
}

.about-mv-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.about-mv-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.about-mv-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(147, 51, 234, 0.2);
  border-radius: 28px;
  padding: 4rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.about-mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.about-mv-card:hover {
  transform: translateY(-10px);
  border-color: rgba(147, 51, 234, 0.5);
  box-shadow: 0 20px 50px rgba(147, 51, 234, 0.3);
}

.about-mv-card-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.about-mv-card-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(147, 51, 234, 0.4);
}

.about-mv-card-icon i {
  font-size: 3rem;
  color: var(--contrast-color);
}

.about-mv-card-header h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
}

.about-mv-card-body p {
  font-size: 1.125rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.9;
  margin: 0 0 2.5rem 0;
}

.about-mv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-mv-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
  color: var(--default-color);
}

.about-mv-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* Values Section New */
.about-werte-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--background-color) 0%, rgba(147, 51, 234, 0.05) 100%);
}

.about-values-header {
  text-align: center;
  margin-bottom: 5rem;
}

.about-values-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(147, 51, 234, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 2rem;
}

.about-values-badge i {
  font-size: 1.25rem;
}

.about-values-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.about-values-subtitle {
  font-size: 1.125rem;
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.8;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-values-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.about-value-card-new {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(147, 51, 234, 0.2);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.about-value-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.about-value-card-new:hover {
  transform: translateY(-12px);
  border-color: rgba(147, 51, 234, 0.5);
  box-shadow: 0 20px 50px rgba(147, 51, 234, 0.3);
}

.about-value-icon-new {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
  box-shadow: 0 10px 30px rgba(147, 51, 234, 0.4);
}

.about-value-card-new:hover .about-value-icon-new {
  transform: scale(1.15) rotate(10deg);
}

.about-value-icon-new i {
  font-size: 3rem;
  color: var(--contrast-color);
}

.about-value-card-new h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 1.5rem 0;
}

.about-value-card-new p {
  font-size: 1rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.8;
  margin: 0;
}

/* Team Section New */
.about-team-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.about-team-bg-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 30%, rgba(147, 51, 234, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 75% 70%, rgba(99, 102, 241, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.about-team-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.about-team-main {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(147, 51, 234, 0.2);
  border-radius: 28px;
  padding: 4rem;
}

.about-team-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(147, 51, 234, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 2rem;
}

.about-team-badge i {
  font-size: 1.25rem;
}

.about-team-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 2rem 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.about-team-text {
  font-size: 1.125rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.9;
  margin: 0 0 3rem 0;
}

.about-team-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-team-feature {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.about-team-feature-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(147, 51, 234, 0.3);
}

.about-team-feature-icon i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.about-team-feature-content h4 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 0.75rem 0;
}

.about-team-feature-content p {
  font-size: 1rem;
  color: var(--default-color);
  opacity: 0.85;
  margin: 0;
  line-height: 1.7;
}

.about-team-legal {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.about-legal-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(147, 51, 234, 0.2);
  border-radius: 28px;
  padding: 3rem;
}

.about-legal-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 2px solid rgba(147, 51, 234, 0.15);
}

.about-legal-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(147, 51, 234, 0.3);
}

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

.about-legal-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
}

.about-legal-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-legal-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-legal-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--default-color);
  opacity: 0.7;
}

.about-legal-label i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.about-legal-row span,
.about-legal-row a {
  font-size: 1rem;
  color: var(--default-color);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Contact Page Styles */
.contact-page-hero {
  position: relative;
  padding: 8rem 0 6rem;
  background: linear-gradient(180deg, var(--background-color) 0%, rgba(147, 51, 234, 0.08) 100%);
  overflow: hidden;
}

.contact-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(147, 51, 234, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(99, 102, 241, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.contact-hero-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.contact-hero-badge-wrapper {
  margin-bottom: 2rem;
}

.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(147, 51, 234, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-color);
}

.contact-hero-badge i {
  font-size: 1.25rem;
}

.contact-hero-main-title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 2rem 0;
  line-height: 1.1;
  letter-spacing: -1px;
}

.contact-gradient-text {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero-description {
  font-size: 1.25rem;
  color: var(--default-color);
  opacity: 0.85;
  line-height: 1.8;
  margin: 0;
}

.kontakt-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.contact-section-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 40%, rgba(147, 51, 234, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 80% 60%, rgba(99, 102, 241, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.contact-page-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.contact-page-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.contact-page-subtitle {
  font-size: 1.125rem;
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.contact-info-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(147, 51, 234, 0.2);
  border-radius: 28px;
  padding: 3.5rem;
}

.contact-info-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 1rem 0;
}

.contact-info-intro {
  font-size: 1rem;
  color: var(--default-color);
  opacity: 0.85;
  line-height: 1.7;
  margin: 0 0 3rem 0;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.contact-info-entry {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-info-entry-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(147, 51, 234, 0.3);
}

.contact-info-entry-icon i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}

.contact-info-entry-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 0.75rem 0;
}

.contact-info-entry-content p {
  font-size: 1rem;
  color: var(--default-color);
  opacity: 0.85;
  margin: 0;
  line-height: 1.7;
}

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

.contact-info-entry-content a:hover {
  opacity: 0.8;
}

.contact-info-note {
  font-size: 0.9rem;
  opacity: 0.6;
}

.contact-social-section {
  padding-top: 2.5rem;
  border-top: 2px solid rgba(147, 51, 234, 0.15);
}

.contact-social-section h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 1.5rem 0;
}

.contact-social-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-social-button {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(147, 51, 234, 0.25);
  border-radius: 14px;
  color: var(--default-color);
  opacity: 0.8;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.25rem;
}

.contact-social-button:hover {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  opacity: 1;
  transform: translateY(-4px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 25px rgba(147, 51, 234, 0.4);
}

.contact-form-sidebar {
  position: relative;
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(147, 51, 234, 0.2);
  border-radius: 28px;
  padding: 4rem;
}

.contact-form-intro {
  margin-bottom: 3rem;
}

.contact-form-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 1rem 0;
}

.contact-form-intro-text {
  font-size: 1rem;
  color: var(--default-color);
  opacity: 0.85;
  line-height: 1.7;
  margin: 0;
}

.contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-form-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
}

.contact-form-input {
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(147, 51, 234, 0.25);
  border-radius: 14px;
  color: var(--default-color);
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
  font-family: inherit;
}

.contact-form-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(147, 51, 234, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

.contact-form-input::placeholder {
  color: var(--default-color);
  opacity: 0.5;
}

.contact-form-textarea {
  resize: vertical;
  min-height: 180px;
  font-family: inherit;
}

.contact-form-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-form-checkbox {
  width: 22px;
  height: 22px;
  margin-top: 0.25rem;
  cursor: pointer;
  accent-color: var(--accent-color);
  flex-shrink: 0;
}

.contact-form-checkbox-label {
  font-size: 0.9rem;
  color: var(--default-color);
  opacity: 0.85;
  line-height: 1.7;
}

.contact-form-checkbox-label a {
  color: var(--accent-color);
  text-decoration: none;
}

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

.contact-form-submit-wrapper {
  margin-top: 1rem;
}

.contact-form-submit-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 3rem;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  border: none;
  border-radius: 14px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
}

.contact-form-submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(147, 51, 234, 0.5);
}

.contact-form-submit-button i {
  font-size: 1.25rem;
}

/* FAQ Page Styles */
.faq-page-hero {
  position: relative;
  padding: 8rem 0 6rem;
  background: linear-gradient(180deg, var(--background-color) 0%, rgba(147, 51, 234, 0.08) 100%);
  overflow: hidden;
}

.faq-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 20%, rgba(147, 51, 234, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(99, 102, 241, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.faq-hero-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.faq-hero-badge-wrapper {
  margin-bottom: 2rem;
}

.faq-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(147, 51, 234, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-color);
}

.faq-hero-badge i {
  font-size: 1.25rem;
}

.faq-hero-main-title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 2rem 0;
  line-height: 1.1;
  letter-spacing: -1px;
}

.faq-gradient-text {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-hero-description {
  font-size: 1.25rem;
  color: var(--default-color);
  opacity: 0.85;
  line-height: 1.8;
  margin: 0;
}

.faq-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.faq-section-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(147, 51, 234, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(99, 102, 241, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.faq-container-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.faq-item-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(147, 51, 234, 0.2);
  border-radius: 24px;
  padding: 3rem;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.faq-item-card:hover {
  border-color: rgba(147, 51, 234, 0.5);
  box-shadow: 0 12px 35px rgba(147, 51, 234, 0.2);
}

.faq-item-card.faq-item-active {
  border-color: rgba(147, 51, 234, 0.5);
  box-shadow: 0 15px 40px rgba(147, 51, 234, 0.3);
}

.faq-item-card.faq-item-active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  border-radius: 24px 24px 0 0;
}

.faq-item-header {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.faq-item-icon-box {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(147, 51, 234, 0.3);
}

.faq-item-icon-box i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.faq-item-question {
  flex: 1;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.4;
}

.faq-item-toggle {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(147, 51, 234, 0.15);
  border: 2px solid rgba(147, 51, 234, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.faq-item-card.faq-item-active .faq-item-toggle {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  transform: rotate(180deg);
}

.faq-item-toggle i {
  font-size: 1.5rem;
}

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

.faq-item-card.faq-item-active .faq-item-content {
  max-height: 600px;
  padding: 2.5rem 0 0 0;
}

.faq-item-content p {
  font-size: 1.125rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.9;
  margin: 0;
  padding-left: 90px;
}

/* Responsive */
@media (max-width: 1199px) {
  .about-story-layout,
  .about-team-layout,
  .contact-page-layout {
    grid-template-columns: 1fr;
  }

  .about-mv-cards {
    grid-template-columns: 1fr;
  }

  .about-values-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-team-legal,
  .contact-info-sidebar {
    position: static;
  }

  .faq-item-content p {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .about-hero-main-title,
  .contact-hero-main-title,
  .faq-hero-main-title {
    font-size: 2.5rem;
  }

  .about-story-title,
  .about-mv-title,
  .about-values-title,
  .about-team-title,
  .contact-page-title {
    font-size: 2rem;
  }

  .about-values-grid-new {
    grid-template-columns: 1fr;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .about-mv-card,
  .about-team-main,
  .contact-info-card,
  .contact-form-card {
    padding: 2.5rem;
  }

  .about-highlight-item,
  .about-team-feature {
    flex-direction: column;
    text-align: center;
  }

  .about-highlight-icon,
  .about-team-feature-icon {
    margin: 0 auto;
  }
}
