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

  /* Global Colors - New color scheme for Growinity */
  :root {
    --background-color: #1a1f2e;
    --default-color: #e8f4f8;
    --heading-color: #4a90e2;
    --accent-color: #5fb3d3;
    --surface-color: #2a3441;
    --contrast-color: #ffffff;
    --nav-color: #7bb3d9;
    --nav-hover-color: #4a90e2;
    --nav-mobile-background-color: #2a3441;
    --nav-dropdown-background-color: #2a3441;
    --nav-dropdown-color: #e8f4f8;
    --nav-dropdown-hover-color: #4a90e2;
    --success-color: #52c41a;
    --warning-color: #faad14;
    --danger-color: #ff4d4f;
    --info-color: #1890ff;
  }


  /* Color Presets - New theme for all sections */
  
  .light-background {
    --background-color: #2a3441;
    --default-color: #e8f4f8;
    --heading-color: #4a90e2;
    --surface-color: #3a4554;
    --contrast-color: #ffffff;
  }
  
  .dark-background {
    --background-color: #1a1f2e;
    --default-color: #e8f4f8;
    --heading-color: #7bb3d9;
    --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: var(--background-color);
}

.header-top {
  background: rgba(58, 58, 58, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(240, 98, 146, 0.1);
  padding: 0.5rem 0;
}

.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.header-contact-info {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.header-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245, 245, 245, 0.8);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.header-link i {
  font-size: 0.9rem;
}

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

.social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 98, 146, 0.1);
  border-radius: 8px;
  color: rgba(245, 245, 245, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(240, 98, 146, 0.2);
}

.social-icon:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  border-color: var(--accent-color);
}

.header-main {
  background: rgba(42, 42, 42, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(240, 98, 146, 0.15);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.scrolled .header-main {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.logo-text {
  font-size: 1.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;
  font-family: var(--heading-font);
}

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

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

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

.nav-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  color: rgba(245, 245, 245, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-color);
  background: rgba(240, 98, 146, 0.1);
}

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

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

.btn-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245, 245, 245, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: var(--accent-color);
  background: rgba(240, 98, 146, 0.1);
}

.btn-primary-modern {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-primary-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

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

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

.mobile-nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--default-color);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.5rem;
  line-height: 1;
  z-index: 1000;
}

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

@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: 300px;
    height: 100vh;
    background: var(--surface-color);
    padding: 2rem;
    padding-top: 4rem;
    transform: translateX(100%);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, visibility 0.3s ease, opacity 0.3s ease, pointer-events 0.3s ease;
    z-index: 1001;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    flex: none;
    display: flex;
  }

  .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: 1rem;
    border-radius: 0;
    position: relative;
    z-index: 1;
  }

  .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: 140px;
    height: 42px;
  }

  .btn-link {
    display: none;
  }

  .btn-primary-modern span {
    display: none;
  }

  .btn-primary-modern {
    padding: 0.75rem;
    width: 44px;
    height: 44px;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# 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;
  }
}

/*--------------------------------------------------------------
# Modern Footer
--------------------------------------------------------------*/
.footer-modern {
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  color: var(--default-color);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(240, 98, 146, 0.2);
}

.footer-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(233, 30, 99, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(240, 98, 146, 0.05) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.footer-top {
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 2;
}

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

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

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

.footer-logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.footer-logo-text {
  font-size: 1.75rem;
  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;
  font-family: var(--heading-font);
}

.footer-description {
  color: rgba(245, 245, 245, 0.7);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

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

.social-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(58, 58, 58, 0.6);
  border: 1px solid rgba(240, 98, 146, 0.2);
  border-radius: 12px;
  color: rgba(245, 245, 245, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  border-color: var(--accent-color);
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

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

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-family: var(--heading-font);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
}

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

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

.footer-menu a {
  color: rgba(245, 245, 245, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

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

.footer-newsletter-text {
  color: rgba(245, 245, 245, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.newsletter-form-modern {
  margin-bottom: 2rem;
}

.newsletter-input-group {
  display: flex;
  background: rgba(58, 58, 58, 0.6);
  border: 1px solid rgba(240, 98, 146, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.newsletter-input-group:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

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

.newsletter-input::placeholder {
  color: rgba(245, 245, 245, 0.5);
}

.newsletter-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-btn:hover {
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  transform: scale(1.05);
}

.footer-contact-modern {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(245, 245, 245, 0.7);
  font-size: 0.9rem;
}

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

.contact-row a {
  color: rgba(245, 245, 245, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-row a:hover {
  color: var(--accent-color);
}

.footer-bottom-modern {
  background: rgba(26, 26, 26, 0.8);
  border-top: 1px solid rgba(240, 98, 146, 0.1);
  padding: 1.5rem 0;
  position: relative;
  z-index: 2;
}

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

.copyright-modern {
  color: rgba(245, 245, 245, 0.7);
  font-size: 0.9rem;
}

.copyright-modern strong {
  color: var(--accent-color);
}

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

.footer-legal-modern a {
  color: rgba(245, 245, 245, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

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

.footer-legal-modern .separator {
  color: rgba(245, 245, 245, 0.4);
}

@media (max-width: 768px) {
  .footer-top {
    padding: 3rem 0 1.5rem;
  }

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

  .footer-legal-modern {
    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(74, 144, 226, 0.1) 0%, rgba(95, 179, 211, 0.1) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4a90e2, #5fb3d3);
}

.page-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4a90e2, #5fb3d3);
}

.page-title h1 {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
  background: linear-gradient(135deg, #4a90e2, #5fb3d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-title p {
  font-size: 1.2rem;
  color: var(--default-color);
  opacity: 0.9;
  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
--------------------------------------------------------------*/
/* ============================================
   COMPLETELY REDESIGNED HERO SECTION
   ============================================ */
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 100px;
  background: linear-gradient(135deg, #1a1f2e 0%, #2a3441 50%, #1a1f2e 100%);
  isolation: isolate;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
  background: 
    radial-gradient(circle at 20% 30%, rgba(74, 144, 226, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(95, 179, 211, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(74, 144, 226, 0.08) 0%, transparent 70%);
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(95, 179, 211, 0.05) 100%);
  z-index: 1;
}

/* Animated Shapes */
.animated-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  filter: blur(50px);
  animation: float-shape 30s infinite ease-in-out, shape-pulse 8s infinite ease-in-out;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #4a90e2, #5fb3d3);
  top: 5%;
  left: 5%;
  animation-delay: 0s, 0s;
  animation: float-shape 30s infinite ease-in-out, shape-pulse 8s infinite ease-in-out, shape-rotate 20s infinite linear;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #5fb3d3, #4a90e2);
  top: 55%;
  right: 10%;
  animation-delay: 4s, 2s;
  animation: float-shape 35s infinite ease-in-out, shape-pulse 10s infinite ease-in-out, shape-rotate 25s infinite linear reverse;
}

.shape-3 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #4a90e2, #5fb3d3);
  bottom: 15%;
  left: 15%;
  animation-delay: 8s, 4s;
  animation: float-shape 28s infinite ease-in-out, shape-pulse 9s infinite ease-in-out, shape-rotate 18s infinite linear;
}

.shape-4 {
  width: 450px;
  height: 450px;
  background: linear-gradient(135deg, #5fb3d3, #4a90e2);
  top: 25%;
  right: 25%;
  animation-delay: 12s, 6s;
  animation: float-shape 32s infinite ease-in-out, shape-pulse 11s infinite ease-in-out, shape-rotate 22s infinite linear reverse;
}

.shape-5 {
  width: 380px;
  height: 380px;
  background: linear-gradient(135deg, #4a90e2, #5fb3d3);
  bottom: 5%;
  right: 5%;
  animation-delay: 16s, 8s;
  animation: float-shape 26s infinite ease-in-out, shape-pulse 7s infinite ease-in-out, shape-rotate 15s infinite linear;
}

/* Completely New Hero Animations */
@keyframes float-shape {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.08;
  }
  25% {
    transform: translate(80px, -80px) scale(1.2) rotate(90deg);
    opacity: 0.12;
  }
  50% {
    transform: translate(-60px, 60px) scale(0.85) rotate(180deg);
    opacity: 0.1;
  }
  75% {
    transform: translate(50px, 80px) scale(1.15) rotate(270deg);
    opacity: 0.14;
  }
  100% {
    transform: translate(0, 0) scale(1) rotate(360deg);
    opacity: 0.08;
  }
}

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

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


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

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.25), rgba(95, 179, 211, 0.25));
  border: 2px solid rgba(74, 144, 226, 0.4);
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(74, 144, 226, 0.2), 0 0 20px rgba(74, 144, 226, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: badge-float 4s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

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

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

.hero-badge:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 50px rgba(74, 144, 226, 0.35), 0 0 30px rgba(95, 179, 211, 0.2);
  border-color: rgba(74, 144, 226, 0.6);
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.35), rgba(95, 179, 211, 0.35));
}

.hero-badge i {
  color: #4a90e2;
  font-size: 1.1rem;
  margin-right: 0.5rem;
  filter: drop-shadow(0 2px 4px rgba(74, 144, 226, 0.3));
}

.hero-badge span {
  color: #e8f4f8;
  font-weight: 600;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 2rem;
  color: #ffffff;
  font-family: var(--heading-font);
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight-text {
  background: linear-gradient(135deg, #4a90e2, #5fb3d3, #4a90e2);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
  animation: glow-text 4s ease-in-out infinite, text-shimmer 3s linear infinite;
  filter: drop-shadow(0 0 8px rgba(74, 144, 226, 0.4));
}

@keyframes glow-text {
  0% {
    filter: drop-shadow(0 0 8px rgba(74, 144, 226, 0.4)) drop-shadow(0 0 15px rgba(74, 144, 226, 0.2));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 25px rgba(95, 179, 211, 0.7)) drop-shadow(0 0 40px rgba(95, 179, 211, 0.4));
    transform: scale(1.02);
  }
  100% {
    filter: drop-shadow(0 0 8px rgba(74, 144, 226, 0.4)) drop-shadow(0 0 15px rgba(74, 144, 226, 0.2));
    transform: scale(1);
  }
}

@keyframes text-shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

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

.hero-description {
  font-size: 1.3rem;
  line-height: 1.85;
  color: rgba(232, 244, 248, 0.95);
  margin-bottom: 2.5rem;
  max-width: 650px;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.hero-guarantee {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.hero-guarantee i {
  color: var(--success-color);
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

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

/* Canvas Container */
.hero-canvas-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(58, 58, 58, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(240, 98, 146, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

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

.floating-card {
  position: absolute;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.2), rgba(95, 179, 211, 0.2));
  backdrop-filter: blur(25px);
  padding: 1.5rem 2rem;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 15px 40px rgba(74, 144, 226, 0.2), 0 0 20px rgba(74, 144, 226, 0.1);
  z-index: 10;
  border: 3px solid rgba(74, 144, 226, 0.4);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  animation: card-glow 3s ease-in-out infinite;
  overflow: hidden;
}

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

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

.floating-card:hover {
  transform: translateY(-12px) scale(1.12) rotate(2deg);
  box-shadow: 0 30px 70px rgba(74, 144, 226, 0.45), 0 0 40px rgba(95, 179, 211, 0.3);
  border-color: rgba(74, 144, 226, 0.7);
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.3), rgba(95, 179, 211, 0.3));
  animation: none;
}

.floating-card .card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4a90e2, #5fb3d3);
  border-radius: 18px;
  animation: pulse-icon-new 3s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.5), 0 0 15px rgba(74, 144, 226, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.floating-card .card-icon::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  animation: icon-shine 2s linear infinite;
}

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

.floating-card i {
  font-size: 1.75rem;
  color: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.floating-card span {
  color: #e8f4f8;
  font-weight: 700;
  font-size: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.floating-card.card-1 {
  top: 0;
  left: 0;
  animation: float-card-1 6s ease-in-out infinite, card-glow 3s ease-in-out infinite;
}

.floating-card.card-2 {
  top: 20%;
  right: 0;
  animation: float-card-2 7s ease-in-out infinite, card-glow 3.5s ease-in-out infinite;
  animation-delay: 1s, 0.5s;
}

.floating-card.card-3 {
  bottom: 20%;
  left: 10%;
  animation: float-card-3 6.5s ease-in-out infinite, card-glow 3.2s ease-in-out infinite;
  animation-delay: 2s, 1s;
}

.floating-card.card-4 {
  bottom: 0;
  right: 10%;
  animation: float-card-4 7.5s ease-in-out infinite, card-glow 3.8s ease-in-out infinite;
  animation-delay: 3s, 1.5s;
}

/* Completely New Floating Card Animations */
@keyframes float-card-1 {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(20px, -25px) rotate(8deg) scale(1.05);
  }
  50% {
    transform: translate(10px, -30px) rotate(5deg) scale(1.08);
  }
  75% {
    transform: translate(-10px, -20px) rotate(-3deg) scale(1.03);
  }
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}

@keyframes float-card-2 {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(-25px, 20px) rotate(-8deg) scale(1.05);
  }
  50% {
    transform: translate(-30px, 15px) rotate(-5deg) scale(1.08);
  }
  75% {
    transform: translate(-15px, 25px) rotate(3deg) scale(1.03);
  }
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}

@keyframes float-card-3 {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(30px, -15px) rotate(10deg) scale(1.06);
  }
  50% {
    transform: translate(25px, -20px) rotate(7deg) scale(1.09);
  }
  75% {
    transform: translate(15px, -10px) rotate(-5deg) scale(1.04);
  }
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}

@keyframes float-card-4 {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(-20px, 25px) rotate(-10deg) scale(1.06);
  }
  50% {
    transform: translate(-25px, 30px) rotate(-7deg) scale(1.09);
  }
  75% {
    transform: translate(-10px, 20px) rotate(5deg) scale(1.04);
  }
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}

@keyframes pulse-icon-new {
  0% {
    transform: scale(1) rotate(0deg);
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.4);
  }
  25% {
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 12px 35px rgba(74, 144, 226, 0.6);
  }
  50% {
    transform: scale(1.2) rotate(180deg);
    box-shadow: 0 15px 40px rgba(95, 179, 211, 0.7);
  }
  75% {
    transform: scale(1.15) rotate(270deg);
    box-shadow: 0 12px 35px rgba(74, 144, 226, 0.6);
  }
  100% {
    transform: scale(1) rotate(360deg);
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.4);
  }
}

@keyframes card-glow {
  0%, 100% {
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.2), 0 0 20px rgba(74, 144, 226, 0.1);
  }
  50% {
    box-shadow: 0 20px 50px rgba(74, 144, 226, 0.35), 0 0 30px rgba(95, 179, 211, 0.2);
  }
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 2rem;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(58, 58, 58, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(240, 98, 146, 0.2);
  min-width: 120px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(240, 98, 146, 0.3);
}

.stat-number {
  font-size: 2.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;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.8);
  font-weight: 500;
}

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

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

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

.scroll-down span {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.scroll-down i {
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@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: 768px) {
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-description {
    font-size: 1rem;
  }

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

  .hero-cta .btn {
    width: 100%;
    margin: 0 !important;
  }

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

  .stat-item {
    width: 100%;
    min-width: auto;
  }

  .stat-number {
    font-size: 2rem;
  }

  .hero-canvas-container {
    height: 300px;
    margin-bottom: 2rem;
  }

  .floating-cards {
    display: none;
  }

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

/*--------------------------------------------------------------
# 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);
}

.stat-card {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.stat-card::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;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 10px;
}

.stat-label {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  opacity: 0.3;
}

.stat-icon i {
  font-size: 24px;
  color: white;
}

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

/* Dark background features section */
.features.dark-background {
  background: var(--dark-background);
  color: var(--contrast-color);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.features.dark-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

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

/* 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 Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 25px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-color);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), #f59e0b);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

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

.feature-icon-wrapper i {
  font-size: 28px;
  color: white;
}

.feature-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 12px;
}

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

/* Features CTA */
.features-cta {
  margin-top: 30px;
}

.features-cta .btn {
  background: linear-gradient(135deg, var(--accent-color), #f59e0b);
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(217, 119, 6, 0.3);
}

.features-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(217, 119, 6, 0.4);
}

/* 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: 991px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .features-content {
    padding-right: 0;
    margin-bottom: 50px;
  }
  
  .features-title {
    font-size: 2.5rem;
  }
  
  .image-composition {
    height: 400px;
  }
  
  .floating-card {
    display: none;
  }
}

@media (max-width: 768px) {
  .features-title {
    font-size: 2rem;
  }
  
  .features-description {
    font-size: 1rem;
  }
  
  .feature-card {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# 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 .testimonial-wrap {
  padding-left: 50px;
}

/* New Testimonial Cards */
.testimonial-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border: 1px solid rgba(147, 51, 234, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.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: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 2px solid rgba(0, 255, 136, 0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 255, 136, 0.2);
  z-index: 2;
}

.program-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 200, 255, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.program-slide:hover::before {
  opacity: 1;
}

.program-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00ff88, #00c8ff, #00ff88);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left;
  z-index: 1;
}

.program-slide:hover::after {
  transform: scaleX(1);
}

.program-slide:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 255, 136, 0.4), 0 0 60px rgba(0, 200, 255, 0.3);
  border-color: rgba(0, 255, 136, 0.6);
}

.program-icon {
  width: 90px;
  height: 90px;
  border-radius: 22px;
  background: linear-gradient(135deg, #00ff88, #00c8ff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5), 0 0 30px rgba(0, 200, 255, 0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.program-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: icon-shine-cyan 3s linear infinite;
}

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

.program-slide:hover .program-icon {
  transform: rotate(15deg) scale(1.2);
  box-shadow: 0 20px 50px rgba(0, 255, 136, 0.6), 0 0 40px rgba(0, 200, 255, 0.4);
}

.program-slide:hover .program-icon::before {
  opacity: 1;
}

.program-icon i {
  font-size: 2.75rem;
  color: white;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.3));
  position: relative;
  z-index: 1;
}

.program-slide h3 {
  color: #ffffff;
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  font-family: var(--heading-font);
  letter-spacing: -0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.program-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-style: italic;
  line-height: 1.7;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.program-content {
  flex: 1;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

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

.program-feature i {
  color: #00ff88;
  font-size: 1.4rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0, 255, 136, 0.5));
  animation: feature-check-pulse-cyan 2s ease-in-out infinite;
}

@keyframes feature-check-pulse-cyan {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

.program-feature strong {
  display: block;
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.program-feature p {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin: 0;
  font-size: 1rem;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.program-stats {
  display: flex;
  justify-content: space-around;
  padding-top: 2rem;
  border-top: 2px solid rgba(0, 255, 136, 0.3);
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.stat-mini {
  text-align: center;
  flex: 1;
}

.stat-mini .stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #00ff88, #00c8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
  filter: drop-shadow(0 2px 8px rgba(0, 255, 136, 0.4));
}

.stat-mini .stat-text {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.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-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
  border-color: var(--accent-color);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  border-radius: 12px 12px 0 0;
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-header h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin: 1rem 0;
}

.price .currency {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--default-color);
  margin-right: 0.25rem;
}

.price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

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

.price-description {
  color: var(--default-color);
  opacity: 0.8;
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

.pricing-features {
  flex: 1;
  margin-bottom: 2rem;
}

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

.pricing-features ul li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--default-color);
}

.pricing-features ul li i {
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pricing-features ul li .bi-check-circle-fill {
  color: var(--success-color);
}

.pricing-features ul li .bi-x-circle {
  color: var(--danger-color);
  opacity: 0.6;
}

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

.pricing-comparison {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-comparison table {
  margin-bottom: 0;
}

.pricing-comparison table th {
  background-color: var(--heading-color);
  color: var(--contrast-color);
  font-weight: 600;
  padding: 1rem;
  text-align: center;
}

.pricing-comparison table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-comparison table tbody tr:hover {
  background-color: rgba(147, 51, 234, 0.1);
}

.pricing-cta {
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* 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;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.stat-item p {
  color: var(--default-color);
  opacity: 0.8;
  margin: 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(--background-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 {
  position: relative;
}

.success-area-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.success-area-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-area-card:hover::before {
  transform: scaleX(1);
}

.success-area-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(147, 51, 234, 0.3);
  border-color: rgba(147, 51, 234, 0.4);
  background: rgba(147, 51, 234, 0.1);
}

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

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

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

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

.success-area-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
  line-height: 1.3;
}

.success-area-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.story-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border: 1px solid rgba(147, 51, 234, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.story-info {
  flex: 1;
}

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

.story-meta {
  margin: 0;
  color: var(--default-color);
  opacity: 0.7;
  font-size: 0.9rem;
}

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

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

.story-content h5 {
  color: var(--heading-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.story-results {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}

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

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

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

.success-cta {
  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);
}

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

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

@media (max-width: 768px) {
  .success-area-card {
    padding: 1.5rem;
  }

  .story-card {
    padding: 2rem;
  }

  .success-cta {
    padding: 2rem 1.5rem;
  }

  .success-cta h3 {
    font-size: 1.5rem;
  }
}

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

/* ============================================
   COMPLETELY REDESIGNED FEATURES-SLIDER SECTION - NEW DESIGN
   ============================================ */
#features-slider {
  padding: 150px 0;
  background: linear-gradient(135deg, #001a1a 0%, #003d3d 50%, #002626 100%);
  position: relative;
  overflow: hidden;
}

#features-slider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 30%, rgba(0, 255, 136, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(0, 200, 255, 0.12) 0%, transparent 50%);
  z-index: 0;
}

#features-slider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00ff88, #00c8ff, #00ff88, transparent);
  z-index: 1;
}

#features-slider .section-title {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

#features-slider .section-title h2 {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #00ff88, #00c8ff, #00ff88);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
  animation: gradient-shift 3s ease infinite;
}

#features-slider .section-title p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.swiper-slide {
  transition: filter 0.3s ease;
  height: auto;
}

.swiper-button-prev,
.swiper-button-next {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 200, 255, 0.2) 100%);
  backdrop-filter: blur(10px);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid rgba(0, 255, 136, 0.3);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3), 0 0 20px rgba(0, 200, 255, 0.2);
  z-index: 10;
  transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.4) 0%, rgba(0, 200, 255, 0.4) 100%);
  border-color: rgba(0, 255, 136, 0.6);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4), 0 0 30px rgba(0, 200, 255, 0.3);
}

@media (max-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}

.swiper-button-next {
  right: 2%;
}

.swiper-button-prev {
  left: 2%;
}

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

.swiper-pagination {
  position: relative;
  margin-top: 3rem;
  z-index: 2;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  border: 2px solid rgba(0, 255, 136, 0.5);
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #00ff88, #00c8ff);
  border-color: #00ff88;
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
}

.list-cards {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.card-item {
  background: var(--background-color);
  border-radius: 12px;
  box-shadow: 0 4px 12px  var(--heading-color);
  padding: 5px 10px;
  display: flex;
  align-items: flex-start;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: default;
  margin: 10px;
}
.card-item:hover {
  box-shadow: 0 8px 24px var(--heading-color);
  transform: translateY(-5px);
}
.card-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.icon {
  font-size: 1.8rem;
  color: var(--accent-color);
  flex-shrink: 0;
}
.card-item p {
  margin: 0;
  font-size: 1rem;
  color: var(--accent-color);
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .list-cards {
    flex-direction: column;
  }
  .card-item {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# 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;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(147, 51, 234, 0.1);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(147, 51, 234, 0.1), transparent);
  transition: left 0.6s ease;
}

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

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--default-color);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/*--------------------------------------------------------------
# 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-hero-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-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item-modern {
  flex: 1;
  min-width: 120px;
}

.stat-number-modern {
  font-size: 2.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;
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
}

.stat-label-modern {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

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

  .services-stats {
    gap: 1.5rem;
  }

  .stat-number-modern {
    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 Header Styles
--------------------------------------------------------------*/
.header-new {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26, 31, 46, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(74, 144, 226, 0.1);
  transition: all 0.3s ease;
}

.header-new.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-wrapper {
  padding: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}

.header-logo .logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header-logo .logo-link:hover {
  opacity: 0.8;
}

.logo-image {
  height: 40px;
  width: auto;
}

.logo-text {
  display: none;
}

.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.nav-item {
  padding: 0.5rem 1rem;
  color: var(--default-color);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-item:hover,
.nav-item.active {
  color: var(--heading-color);
  background: rgba(74, 144, 226, 0.1);
}

.header-actions-new {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-faq-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
  background: rgba(74, 144, 226, 0.1);
  border: 1px solid rgba(74, 144, 226, 0.2);
}

.header-faq-btn:hover {
  background: var(--heading-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.header-cta-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--heading-color);
  color: var(--contrast-color);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.header-cta-btn:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
}

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

.menu-icon-line {
  width: 24px;
  height: 2px;
  background: var(--default-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover .menu-icon-line {
  background: var(--heading-color);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: none;
  pointer-events: none;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--surface-color);
  z-index: 1002;
  transform: translateX(100%);
  transition: transform 0.3s ease, visibility 0.3s ease, opacity 0.3s ease;
  display: none;
  flex-direction: column;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  will-change: transform;
}

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

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(74, 144, 226, 0.1);
}

.mobile-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.mobile-logo img {
  height: 32px;
  width: auto;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  color: var(--default-color);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(74, 144, 226, 0.1);
  color: var(--heading-color);
}

.mobile-nav {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 0;
}

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

.mobile-nav-item {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--default-color);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
  color: var(--heading-color);
  background: rgba(74, 144, 226, 0.1);
  border-left-color: var(--heading-color);
}

.mobile-menu-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(74, 144, 226, 0.1);
}

.mobile-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

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

.mobile-contact-link:hover {
  color: var(--heading-color);
}

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

.mobile-social {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.mobile-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(74, 144, 226, 0.1);
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-social-link:hover {
  background: var(--heading-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--heading-color);
  color: var(--contrast-color);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

.mobile-cta-btn:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
}

/*--------------------------------------------------------------
# New Footer Styles
--------------------------------------------------------------*/
.footer-new {
  background: var(--background-color);
  border-top: 1px solid rgba(74, 144, 226, 0.1);
  margin-top: 4rem;
}

.footer-main {
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
  gap: 3rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer-logo-img {
  height: 40px;
  width: auto;
}

.footer-logo-text {
  display: none;
}

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

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

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

.social-link:hover {
  background: var(--heading-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  border-color: var(--heading-color);
}

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

.footer-heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 1rem 0;
  font-family: var(--heading-font);
}

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

.footer-link-list a {
  color: var(--default-color);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.footer-link-list a:hover {
  color: var(--heading-color);
  opacity: 1;
  padding-left: 0.25rem;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-text {
  color: var(--default-color);
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.8;
  margin: 0 0 0.5rem 0;
}

.newsletter-form {
  margin-bottom: 1.5rem;
}

.newsletter-input-wrapper {
  display: flex;
  gap: 0.5rem;
  background: var(--surface-color);
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: 8px;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.newsletter-input-wrapper:focus-within {
  border-color: var(--heading-color);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

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

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

.newsletter-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--heading-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.newsletter-submit-btn:hover {
  background: var(--accent-color);
  transform: translateX(2px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--default-color);
  font-size: 0.9rem;
  opacity: 0.8;
}

.contact-info-item i {
  color: var(--heading-color);
  font-size: 1rem;
  width: 20px;
  flex-shrink: 0;
}

.contact-info-item a {
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info-item a:hover {
  color: var(--heading-color);
}

.footer-bottom {
  background: rgba(26, 31, 46, 0.5);
  border-top: 1px solid rgba(74, 144, 226, 0.1);
  padding: 2rem 0;
}

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

.footer-copyright {
  flex: 1;
}

.footer-copyright p {
  margin: 0;
  color: var(--default-color);
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-copyright .company-info {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  opacity: 0.7;
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .header-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu-overlay {
    display: block;
  }

  .mobile-menu-overlay:not(.active) {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

  .mobile-menu:not(.active) {
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    opacity: 0;
    width: 0;
    overflow: hidden;
  }

  .mobile-menu.active {
    width: 320px;
    max-width: 85vw;
  }

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

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

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .header-inner {
    padding: 0.75rem 0;
  }

  .logo-text {
    font-size: 1.25rem;
  }

  .header-cta-btn span {
    display: none;
  }

  .header-cta-btn {
    padding: 0.625rem;
    width: 40px;
    height: 40px;
    justify-content: center;
  }

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

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .mobile-menu {
    width: 100%;
    max-width: 100%;
  }
}

/* ============================================
   NEW REDESIGNED PAGE TEMPLATES & STYLES
   ============================================ */

/* About Page Redesign */
.about-hero-section {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(95, 179, 211, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.about-hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.about-hero-content {
  position: relative;
  z-index: 1;
}

.about-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.about-hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-feature-item {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(74, 144, 226, 0.2);
  transition: all 0.3s ease;
}

.about-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2);
  border-color: rgba(74, 144, 226, 0.4);
}

.about-feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4a90e2, #5fb3d3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

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

.about-feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.about-feature-text {
  font-size: 0.9rem;
  color: var(--default-color);
  opacity: 0.8;
  margin: 0;
}

.about-hero-visual {
  position: relative;
  z-index: 1;
}

.about-hero-image {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(95, 179, 211, 0.1) 100%);
  border-radius: 24px;
  pointer-events: none;
}

/* Statistics Cards Redesign */
.about-stats-section {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(95, 179, 211, 0.08) 100%);
  position: relative;
}

.stat-card-modern {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 2px solid rgba(74, 144, 226, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

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

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

.stat-card-modern:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(74, 144, 226, 0.25);
  border-color: rgba(74, 144, 226, 0.3);
}

.stat-icon-modern {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #4a90e2, #5fb3d3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.stat-card-modern:hover .stat-icon-modern {
  transform: rotate(10deg) scale(1.1);
}

.stat-icon-modern i {
  font-size: 2rem;
  color: white;
}

.stat-number-modern {
  font-size: 3rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
  background: linear-gradient(135deg, #4a90e2, #5fb3d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label-modern {
  font-size: 1rem;
  color: var(--default-color);
  opacity: 0.8;
  margin: 0;
  font-weight: 500;
}

/* Programs Table Redesign */
.programs-table-modern {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: none;
}

.programs-table-modern thead {
  background: linear-gradient(135deg, #4a90e2, #5fb3d3);
}

.programs-table-modern thead th {
  color: white;
  font-weight: 700;
  padding: 1.5rem;
  border: none;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.programs-table-modern tbody tr {
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(74, 144, 226, 0.1);
}

.programs-table-modern tbody tr:hover {
  background: rgba(74, 144, 226, 0.05);
  transform: scale(1.01);
}

.programs-table-modern tbody td {
  padding: 1.5rem;
  border: none;
  vertical-align: middle;
}

.programs-table-modern tbody td strong {
  color: var(--heading-color);
  font-size: 1.05rem;
}

/* Contact Page Redesign */
.contact-info {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(95, 179, 211, 0.05) 100%);
  padding: 2.5rem;
  border-radius: 24px;
  border: 2px solid rgba(74, 144, 226, 0.1);
  height: 100%;
}

.info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(74, 144, 226, 0.1);
}

.info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4a90e2, #5fb3d3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.info-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

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

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

.info-content a:hover {
  color: #5fb3d3;
}

.contact-form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(74, 144, 226, 0.1);
}

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

.contact-benefit-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(74, 144, 226, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.contact-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(74, 144, 226, 0.2);
  border-color: rgba(74, 144, 226, 0.3);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #4a90e2, #5fb3d3);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

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

.benefit-icon i {
  font-size: 2rem;
  color: white;
}

.contact-benefit-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.contact-benefit-card p {
  color: var(--default-color);
  opacity: 0.8;
  margin: 0;
  line-height: 1.6;
}

/* FAQ Page Redesign */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-category-header {
  margin: 3rem 0 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid rgba(74, 144, 226, 0.2);
}

.faq-category-header:first-child {
  margin-top: 0;
}

.faq-category-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  margin: 0;
}

.faq-category-header h2 i {
  color: var(--accent-color);
  margin-right: 0.75rem;
}

.faq-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 1rem;
  border: 2px solid rgba(74, 144, 226, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(74, 144, 226, 0.3);
  box-shadow: 0 5px 20px rgba(74, 144, 226, 0.15);
}

.faq-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-header:hover {
  background: rgba(74, 144, 226, 0.05);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.faq-header h3 {
  flex: 1;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
  color: var(--heading-color);
  line-height: 1.4;
}

.faq-toggle {
  font-size: 1.2rem;
  color: var(--accent-color);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
}

.faq-item.faq-active .faq-content {
  max-height: 1000px;
  padding: 0 1.5rem 1.5rem;
}

.faq-content p {
  color: var(--default-color);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.faq-content p:last-child {
  margin-bottom: 0;
}

.faq-content ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.faq-content li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
  color: var(--default-color);
}

.faq-cta-section {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(95, 179, 211, 0.1) 100%);
  padding: 3rem;
  border-radius: 24px;
  margin-top: 3rem;
  border: 2px solid rgba(74, 144, 226, 0.2);
}

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

.social-icon-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 144, 226, 0.1);
  border-radius: 10px;
  color: var(--accent-color);
  transition: all 0.3s ease;
  margin-right: 0.5rem;
}

.social-icon-link:hover {
  background: linear-gradient(135deg, #4a90e2, #5fb3d3);
  color: white;
  transform: translateY(-3px);
}

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

/* Additional Page Styles */
.light-background {
  background-color: var(--background-color);
}

.dark-background {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(95, 179, 211, 0.08) 100%);
}

.section-header-center {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title-center {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.section-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(74, 144, 226, 0.1);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

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

.highlight-gradient {
  background: linear-gradient(135deg, #4a90e2, #5fb3d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Contact Why Section */
.contact-why-section {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(95, 179, 211, 0.08) 100%);
}

/* Enhanced About Hero Visual */
.about-hero-visual {
  position: relative;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(95, 179, 211, 0.05) 100%);
  border-radius: 30px;
  overflow: hidden;
}

.about-hero-visual::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

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

.about-hero-image {
  position: relative;
  z-index: 1;
  border-radius: 20px;
}

.image-overlay-gradient {
  position: absolute;
  top: 2rem;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.15) 0%, rgba(95, 179, 211, 0.15) 100%);
  border-radius: 20px;
  pointer-events: none;
  z-index: 2;
}

/* Enhanced Statistics */
.about-stats-section {
  padding: 80px 0;
  position: relative;
}

.about-stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(74, 144, 226, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(95, 179, 211, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Enhanced Mission Cards */
.mission-card-modern {
  position: relative;
  overflow: hidden;
}

.mission-card-modern::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mission-card-modern:hover::after {
  opacity: 1;
}

/* Enhanced Values Grid */
.about-values-section {
  padding: 80px 0;
  position: relative;
}

.value-card-modern {
  position: relative;
  overflow: hidden;
}

.value-card-modern::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4a90e2, #5fb3d3);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.value-card-modern:hover::after {
  transform: scaleX(1);
}

/* Enhanced Programs Table */
.about-programs-section {
  padding: 80px 0;
}

.programs-table-modern tbody tr {
  position: relative;
}

.programs-table-modern tbody tr::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #4a90e2, #5fb3d3);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.programs-table-modern tbody tr:hover::before {
  transform: scaleY(1);
}

/* Enhanced Contact Form */
.contact-form-wrapper {
  position: relative;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #4a90e2, #5fb3d3);
  border-radius: 26px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-form-wrapper:hover::before {
  opacity: 0.1;
}

.contact-form-wrapper .form-control {
  border: 2px solid rgba(74, 144, 226, 0.2);
  border-radius: 12px;
  padding: 0.875rem 1.25rem;
  transition: all 0.3s ease;
}

.contact-form-wrapper .form-control:focus {
  border-color: #4a90e2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.contact-form-wrapper .btn-primary {
  background: linear-gradient(135deg, #4a90e2, #5fb3d3);
  border: none;
  border-radius: 12px;
  padding: 0.875rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-form-wrapper .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

/* Enhanced FAQ Items */
.faq-item {
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #4a90e2, #5fb3d3);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.faq-item.faq-active::before,
.faq-item:hover::before {
  transform: scaleY(1);
}

.faq-item.faq-active {
  border-color: rgba(74, 144, 226, 0.4);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.15);
}

/* Enhanced Contact Benefits */
.contact-why-section {
  padding: 80px 0;
  position: relative;
}

.contact-benefit-card {
  position: relative;
  overflow: hidden;
}

.contact-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4a90e2, #5fb3d3);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

/* Responsive adjustments */
@media (max-width: 991px) {
  .about-hero-title {
    font-size: 2rem;
  }
  
  .about-features-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-wrapper {
    padding: 2rem;
  }
  
  .faq-header h3 {
    font-size: 1rem;
  }
  
  .section-title-center {
    font-size: 2rem;
  }
  
  .stat-card-modern {
    padding: 2rem 1.5rem;
  }
  
  .stat-number-modern {
    font-size: 2.5rem;
  }
  
  .page-title h1 {
    font-size: 2.5rem;
  }
  
  .about-hero-visual {
    padding: 1rem;
    margin-top: 2rem;
  }
  
  .contact-info {
    position: static !important;
    margin-bottom: 2rem;
  }
}

/* Additional enhancements */
.about-hero-section,
.about-mission-section,
.about-programs-section {
  padding: 80px 0;
}

.about-values-section,
.about-team-section {
  padding: 80px 0;
}

.contact section {
  padding: 80px 0;
}

.faq-container .faq-item {
  margin-bottom: 1.25rem;
}

.faq-category-header {
  margin-top: 4rem;
}

.faq-category-header:first-child {
  margin-top: 0;
}

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

/* Enhanced form inputs */
.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper select,
.contact-form-wrapper textarea {
  font-family: var(--default-font);
  transition: all 0.3s ease;
}

.contact-form-wrapper input[type="text"]:focus,
.contact-form-wrapper input[type="email"]:focus,
.contact-form-wrapper input[type="tel"]:focus,
.contact-form-wrapper select:focus,
.contact-form-wrapper textarea:focus {
  outline: none;
}

/* Enhanced table responsiveness */
@media (max-width: 767px) {
  .programs-table-modern {
    font-size: 0.9rem;
  }
  
  .programs-table-modern thead th,
  .programs-table-modern tbody td {
    padding: 1rem 0.75rem;
  }
  
  .programs-table-modern thead th {
    font-size: 0.85rem;
  }
}

/* ============================================
   COMPLETELY REDESIGNED LAYOUT & STYLES
   ============================================ */

/* New About Page Layout - Full Width Hero */
.about-hero-section {
  padding: 0;
  background: transparent;
}

.about-hero-wrapper {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(95, 179, 211, 0.08) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.about-hero-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.about-hero-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(225deg, rgba(95, 179, 211, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.about-hero-content-new {
  position: relative;
  z-index: 1;
}

.about-hero-title-new {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.about-hero-description-new {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--default-color);
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.about-features-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.about-feature-item-new {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid rgba(74, 144, 226, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.about-feature-item-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4a90e2, #5fb3d3);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.about-feature-item-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(74, 144, 226, 0.2);
  border-color: rgba(74, 144, 226, 0.3);
}

.about-feature-icon-new {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4a90e2, #5fb3d3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.about-feature-item-new:hover .about-feature-icon-new {
  transform: rotate(10deg) scale(1.1);
}

.about-feature-icon-new i {
  font-size: 1.75rem;
  color: white;
}

.about-feature-title-new {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.about-feature-text-new {
  font-size: 0.95rem;
  color: var(--background-color);
  opacity: 0.8;
  margin: 0;
  line-height: 1.6;
}

.about-hero-image-new {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

/* New Statistics Layout - Cards in Row */
.about-stats-section-new {
  padding: 100px 0;
  background: white;
  position: relative;
}

.stat-card-new {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(95, 179, 211, 0.05) 100%);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  border: 2px solid rgba(74, 144, 226, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.stat-card-new::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(95, 179, 211, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card-new:hover::after {
  opacity: 1;
}

.stat-card-new:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 25px 60px rgba(74, 144, 226, 0.3);
  border-color: rgba(74, 144, 226, 0.4);
}

.stat-icon-new {
  width: 90px;
  height: 90px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #4a90e2, #5fb3d3);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.stat-card-new:hover .stat-icon-new {
  transform: rotate(15deg) scale(1.15);
}

.stat-icon-new i {
  font-size: 2.5rem;
  color: white;
}

.stat-number-new {
  font-size: 4rem;
  font-weight: 900;
  color: var(--heading-color);
  margin-bottom: 0.75rem;
  font-family: var(--heading-font);
  background: linear-gradient(135deg, #4a90e2, #5fb3d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.stat-label-new {
  font-size: 1.1rem;
  color: var(--background-color);
  opacity: 0.85;
  margin: 0;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* New Mission/Vision Layout - Side by Side with Images */
.mission-vision-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

.mission-card-new {
  background: white;
  border-radius: 28px;
  padding: 3.5rem;
  border: 2px solid rgba(74, 144, 226, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mission-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(50%, -50%);
  transition: transform 0.4s ease;
}

.mission-card-new:hover::before {
  transform: translate(30%, -30%) scale(1.2);
}

.mission-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(74, 144, 226, 0.25);
  border-color: rgba(74, 144, 226, 0.3);
}

.mission-header-new {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.mission-icon-wrapper-new {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4a90e2, #5fb3d3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.mission-icon-wrapper-new i {
  font-size: 2rem;
  color: white;
}

.mission-title-new {
  font-size: 2rem;
  font-weight: 800;
  color: var(--heading-color);
  margin: 0;
  font-family: var(--heading-font);
}

.mission-text-new {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--default-color);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.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: 1rem;
  color: var(--default-color);
  font-size: 1rem;
  line-height: 1.7;
}

.mission-list-new li i {
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* New Values Layout - Masonry Style */
.values-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-card-new {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  border: 2px solid rgba(74, 144, 226, 0.12);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.value-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(95, 179, 211, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.value-card-new:hover::before {
  opacity: 1;
}

.value-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(74, 144, 226, 0.2);
  border-color: rgba(74, 144, 226, 0.3);
}

.value-icon-wrapper-new {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #4a90e2, #5fb3d3);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.value-card-new:hover .value-icon-wrapper-new {
  transform: rotate(-10deg) scale(1.15);
}

.value-icon-wrapper-new i {
  font-size: 2rem;
  color: white;
}

.value-title-new {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
  position: relative;
  z-index: 1;
}

.value-text-new {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--background-color);
  opacity: 0.85;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* New Programs Table - Card Style */
.programs-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.program-card-new {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  border: 2px solid rgba(74, 144, 226, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

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

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

.program-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(74, 144, 226, 0.25);
  border-color: rgba(74, 144, 226, 0.4);
}

.program-name-new {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.program-focus-new {
  font-size: 1rem;
  color: var(--default-color);
  opacity: 0.8;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.program-meta-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(74, 144, 226, 0.1);
}

.program-duration-new,
.program-result-new {
  font-size: 0.95rem;
  color: var(--default-color);
}

.program-duration-new strong,
.program-result-new strong {
  color: var(--heading-color);
  font-weight: 700;
}

/* New Contact Layout - Split with Map Style */
.contact-wrapper-new {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info-new {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(95, 179, 211, 0.08) 100%);
  border-radius: 28px;
  padding: 3rem;
  border: 2px solid rgba(74, 144, 226, 0.15);
  height: fit-content;
  position: sticky;
  top: 120px;
}

.contact-info-new h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.info-item-new {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 2px solid rgba(74, 144, 226, 0.1);
}

.info-item-new:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-icon-new {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #4a90e2, #5fb3d3);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.25);
}

.info-icon-new i {
  font-size: 1.75rem;
  color: white;
}

.info-content-new h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.info-content-new p {
  margin: 0;
  color: var(--default-color);
  line-height: 1.7;
  font-size: 1rem;
}

.info-content-new a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.info-content-new a:hover {
  color: #5fb3d3;
}

.contact-form-new {
  background: white;
  border-radius: 28px;
  padding: 3.5rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(74, 144, 226, 0.15);
}

.contact-intro-new h3 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.contact-intro-new p {
  font-size: 1.1rem;
  color: var(--background-color);
  opacity: 0.8;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* New FAQ Layout - Accordion with Sidebar */
.faq-wrapper-new {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.faq-sidebar-new {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  border: 2px solid rgba(74, 144, 226, 0.15);
  height: fit-content;
  position: sticky;
  top: 120px;
}

.faq-sidebar-new h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

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

.faq-nav-item-new {
  padding: 0.875rem 1.25rem;
  border-radius: 12px;
  background: rgba(74, 144, 226, 0.05);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-nav-item-new:hover,
.faq-nav-item-new.active {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(95, 179, 211, 0.1) 100%);
  border-color: rgba(74, 144, 226, 0.3);
  transform: translateX(5px);
}

.faq-nav-item-new a {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.faq-nav-item-new i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.faq-content-wrapper-new {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  border: 2px solid rgba(74, 144, 226, 0.15);
}

.faq-item-new {
  background: rgba(74, 144, 226, 0.03);
  border-radius: 18px;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(74, 144, 226, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item-new:hover {
  border-color: rgba(74, 144, 226, 0.25);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.1);
}

.faq-item-new.faq-active-new {
  background: white;
  border-color: rgba(74, 144, 226, 0.4);
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.15);
}

.faq-header-new {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-header-new:hover {
  background: rgba(74, 144, 226, 0.05);
}

.faq-icon-new {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4a90e2, #5fb3d3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.faq-header-new h3 {
  flex: 1;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: var(--heading-color);
  line-height: 1.4;
}

.faq-toggle-new {
  width: 40px;
  height: 40px;
  background: rgba(74, 144, 226, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

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

.faq-item-new.faq-active-new .faq-toggle-new {
  background: linear-gradient(135deg, #4a90e2, #5fb3d3);
}

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

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

.faq-item-new.faq-active-new .faq-content-new {
  max-height: 2000px;
  padding: 0 2rem 2rem;
}

.faq-content-new p {
  color: var(--default-color);
  line-height: 1.9;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.faq-content-new p:last-child {
  margin-bottom: 0;
}

.faq-content-new ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.faq-content-new li {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--default-color);
  font-size: 1.05rem;
}

.faq-content-new li strong {
  color: var(--heading-color);
  font-weight: 700;
}

/* Responsive for new layouts */
@media (max-width: 1199px) {
  .mission-vision-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .values-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-wrapper-new {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-info-new {
    position: static;
  }
  
  .faq-wrapper-new {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .faq-sidebar-new {
    position: static;
  }
}

@media (max-width: 991px) {
  .about-features-grid-new {
    grid-template-columns: 1fr;
  }
  
  .values-grid-new {
    grid-template-columns: 1fr;
  }
  
  .programs-grid-new {
    grid-template-columns: 1fr;
  }
  
  .about-hero-title-new {
    font-size: 2.5rem;
  }
}

/* ============================================
   COMPLETELY REDESIGNED HERO, TESTIMONIALS & FEATURES
   ============================================ */

/* New Hero Section Design - Completely Redesigned */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #ffffff 0%, rgba(74, 144, 226, 0.05) 50%, rgba(95, 179, 211, 0.08) 100%);
  overflow: hidden;
  padding: 140px 0 100px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(74, 144, 226, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(95, 179, 211, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

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

.animated-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(95, 179, 211, 0.08) 100%);
  animation: floatShape 25s infinite ease-in-out;
  filter: blur(40px);
}

.shape-1 {
  width: 400px;
  height: 400px;
  top: -10%;
  left: -5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 350px;
  height: 350px;
  top: 50%;
  right: -8%;
  animation-delay: 5s;
}

.shape-3 {
  width: 300px;
  height: 300px;
  bottom: -5%;
  left: 15%;
  animation-delay: 10s;
}

.shape-4 {
  width: 380px;
  height: 380px;
  top: 20%;
  right: 25%;
  animation-delay: 15s;
}

.shape-5 {
  width: 320px;
  height: 320px;
  bottom: 5%;
  right: -3%;
  animation-delay: 20s;
}

@keyframes floatShape {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translate(50px, -50px) scale(1.1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-30px, 30px) scale(0.9);
    opacity: 0.7;
  }
  75% {
    transform: translate(40px, 20px) scale(1.05);
    opacity: 0.75;
  }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(95, 179, 211, 0.1) 100%);
  border-radius: 60px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 2.5rem;
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.15);
  border: 2px solid rgba(74, 144, 226, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(74, 144, 226, 0.25);
  border-color: rgba(74, 144, 226, 0.3);
}

.hero-badge i {
  color: var(--accent-color);
  font-size: 1.2rem;
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 2rem;
  color: var(--heading-color);
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
}

.hero-title .highlight-text {
  position: relative;
  background: linear-gradient(135deg, #4a90e2, #5fb3d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-title .highlight-text::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.3) 0%, rgba(95, 179, 211, 0.3) 100%);
  border-radius: 4px;
  z-index: -1;
  transform: scaleX(0);
  animation: underlineExpand 1s ease forwards;
  animation-delay: 0.5s;
}

@keyframes underlineExpand {
  to {
    transform: scaleX(1);
  }
}

.hero-description {
  font-size: 1.3rem;
  line-height: 1.85;
  color: var(--default-color);
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 90%;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-cta .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.hero-cta .btn-primary {
  background: linear-gradient(135deg, #4a90e2, #5fb3d3);
  border: none;
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.hero-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(74, 144, 226, 0.4);
}

.hero-cta .btn-outline-primary {
  border: 2px solid #4a90e2;
  color: #4a90e2;
  background: transparent;
}

.hero-cta .btn-outline-primary:hover {
  background: #4a90e2;
  color: white;
  transform: translateY(-3px);
}

.hero-guarantee {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--default-color);
  font-size: 1rem;
  font-weight: 500;
}

.hero-guarantee i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.hero-visual {
  position: relative;
  z-index: 2;
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-canvas-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.hero-canvas {
  width: 100%;
  height: 100%;
}

.floating-cards {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border: 3px solid rgba(74, 144, 226, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: floatCardNew 8s infinite ease-in-out;
  backdrop-filter: blur(10px);
}

.floating-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(95, 179, 211, 0.05) 100%);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

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

.floating-card:hover {
  transform: translateY(-15px) scale(1.08) !important;
  box-shadow: 0 30px 70px rgba(74, 144, 226, 0.35);
  border-color: rgba(74, 144, 226, 0.5);
}

.floating-card .card-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #4a90e2, #5fb3d3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
  transition: transform 0.4s ease;
}

.floating-card:hover .card-icon {
  transform: rotate(15deg) scale(1.15);
}

.floating-card .card-icon i {
  font-size: 1.75rem;
  color: white;
}

.floating-card span {
  font-weight: 700;
  color: var(--heading-color);
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.card-1 {
  top: 5%;
  left: -5%;
  animation-delay: 0s;
}

.card-2 {
  top: 45%;
  right: -8%;
  animation-delay: 2s;
}

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

.card-4 {
  top: 65%;
  right: 10%;
  animation-delay: 6s;
}

@keyframes floatCardNew {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(15px, -15px) rotate(2deg);
  }
  50% {
    transform: translate(-10px, 10px) rotate(-2deg);
  }
  75% {
    transform: translate(12px, 8px) rotate(1deg);
  }
}

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

.scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--default-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.scroll-down:hover {
  color: var(--accent-color);
  transform: translateY(5px);
}

.scroll-down i {
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

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

/* New Testimonials Section Design - Completely Redesigned */
/* ============================================
   COMPLETELY REDESIGNED TESTIMONIALS SECTION - NEW DESIGN
   ============================================ */
.testimonials {
  padding: 150px 0;
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 20, 147, 0.12) 0%, transparent 50%);
  z-index: 0;
}

.testimonials::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #8a2be2, #ff1493, #8a2be2, transparent);
  z-index: 1;
}

.testimonials .section-title {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.testimonials .section-title h2 {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ff1493, #8a2be2, #ff1493);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
  animation: gradient-shift 3s ease infinite;
}

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

.testimonials .section-title p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.9;
  max-width: 850px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 3rem;
  border: 2px solid rgba(138, 43, 226, 0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(138, 43, 226, 0.2);
  z-index: 2;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(255, 20, 147, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

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

.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff1493, #8a2be2, #ff1493);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left;
  z-index: 1;
}

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

.testimonial-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 80px rgba(138, 43, 226, 0.4), 0 0 60px rgba(255, 20, 147, 0.3);
  border-color: rgba(138, 43, 226, 0.6);
}


.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff1493, #8a2be2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 15px 40px rgba(138, 43, 226, 0.5), 0 0 30px rgba(255, 20, 147, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-avatar::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: avatar-shine 3s linear infinite;
}

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

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 20px 50px rgba(138, 43, 226, 0.6), 0 0 40px rgba(255, 20, 147, 0.4);
}

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

.avatar-icon {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.testimonial-info h4 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-family: var(--heading-font);
  letter-spacing: -0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.testimonial-info .stars {
  display: flex;
  gap: 0.4rem;
}

.testimonial-info .stars i {
  color: #ffd700;
  font-size: 1.3rem;
  filter: drop-shadow(0 2px 6px rgba(255, 215, 0, 0.5));
  animation: star-twinkle 2s ease-in-out infinite;
}

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

@keyframes star-twinkle {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.testimonial-content {
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.testimonial-content p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  position: relative;
  padding: 0 1.5rem;
  font-weight: 400;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.quote-icon-left,
.quote-icon-right {
  position: absolute;
  font-size: 5rem;
  color: rgba(138, 43, 226, 0.2);
  line-height: 1;
  z-index: 1;
  filter: drop-shadow(0 2px 8px rgba(138, 43, 226, 0.3));
}

.quote-icon-left {
  top: -20px;
  left: 0;
}

.quote-icon-right {
  bottom: -30px;
  right: 0;
}

.testimonial-result {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(138, 43, 226, 0.3);
  position: relative;
  z-index: 2;
}

.testimonial-result i {
  color: #00ff88;
  font-size: 1.5rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0, 255, 136, 0.5));
  animation: check-pulse 2s ease-in-out infinite;
}

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

.testimonial-result span {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* New Features Section Design - Completely Redesigned */
/* ============================================
   COMPLETELY REDESIGNED FEATURES SECTION - NEW DESIGN
   ============================================ */
.features {
  padding: 150px 0;
  background: linear-gradient(135deg, #1a0033 0%, #4a0080 50%, #2d004d 100%);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(255, 20, 147, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(138, 43, 226, 0.12) 0%, transparent 50%);
  z-index: 0;
}

.features::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff1493, #8a2be2, #ff1493, transparent);
  z-index: 1;
}

.features .section-title {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.features .section-title h2 {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ff1493, #8a2be2, #ff1493);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
  animation: gradient-shift 3s ease infinite;
}

.features .section-title p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.feature-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 3rem;
  border: 2px solid rgba(138, 43, 226, 0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(138, 43, 226, 0.2);
  z-index: 2;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(255, 20, 147, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.feature-box:hover::before {
  opacity: 1;
}

.feature-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff1493, #8a2be2, #ff1493);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left;
  z-index: 1;
}

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

.feature-box:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 80px rgba(138, 43, 226, 0.4), 0 0 60px rgba(255, 20, 147, 0.3);
  border-color: rgba(138, 43, 226, 0.6);
}


.feature-icon-box {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #ff1493, #8a2be2);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 40px rgba(138, 43, 226, 0.5), 0 0 30px rgba(255, 20, 147, 0.3);
  position: relative;
  z-index: 2;
  border: 3px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.feature-icon-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: icon-shine-rotate 3s linear infinite;
}

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

.feature-box:hover .feature-icon-box {
  transform: rotate(15deg) scale(1.2);
  box-shadow: 0 20px 50px rgba(138, 43, 226, 0.6), 0 0 40px rgba(255, 20, 147, 0.4);
}

.feature-box:hover .feature-icon-box::before {
  opacity: 1;
}

.feature-icon-box i {
  font-size: 2.5rem;
  color: white;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.3));
  position: relative;
  z-index: 1;
}

.feature-box h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.25rem;
  font-family: var(--heading-font);
  letter-spacing: -0.01em;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.feature-description {
  font-size: 1.1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  font-weight: 400;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.feature-list li i {
  color: #00ff88;
  font-size: 1.3rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0, 255, 136, 0.5));
  animation: check-bounce 2s ease-in-out infinite;
}

.feature-list li i:nth-child(1) { animation-delay: 0s; }
.feature-list li i:nth-child(2) { animation-delay: 0.1s; }
.feature-list li i:nth-child(3) { animation-delay: 0.2s; }
.feature-list li i:nth-child(4) { animation-delay: 0.3s; }

@keyframes check-bounce {
  0%, 100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.1) translateY(-2px);
  }
}

.features-cta-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 4rem 3rem;
  border: 2px solid rgba(138, 43, 226, 0.3);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3), 0 0 50px rgba(138, 43, 226, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.features-cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff1493, #8a2be2, #ff1493);
}

.features-cta-box h3 {
  font-size: 2.75rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ff1493, #8a2be2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.features-cta-box .lead {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0;
  line-height: 1.9;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

/* Fix text contrast on light backgrounds */
.light-background {
  background: white !important;
}

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

.light-background p,
.light-background span:not(.highlight-gradient):not(.highlight-text),
.light-background .text-muted,
.light-background .section-title p,
.light-background .lead {
  color: var(--background-color) !important;
  opacity: 0.9;
}

.light-background a:not(.btn) {
  color: var(--accent-color) !important;
}

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

.light-background .btn-outline-primary:hover {
  background: var(--accent-color);
  color: white;
}

/* Ensure dark text on white backgrounds in all sections */
section[class*="light-background"],
.section.light-background {
  background: white !important;
}

section[class*="light-background"] h1,
section[class*="light-background"] h2,
section[class*="light-background"] h3,
section[class*="light-background"] h4,
section[class*="light-background"] h5,
section[class*="light-background"] h6,
.section.light-background h1,
.section.light-background h2,
.section.light-background h3,
.section.light-background h4,
.section.light-background h5,
.section.light-background h6 {
  color: var(--heading-color) !important;
}

section[class*="light-background"] p,
section[class*="light-background"] span,
.section.light-background p,
.section.light-background span {
  color: var(--background-color) !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-description {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    max-width: 100%;
  }
  
  .hero-badge {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-visual {
    height: 450px;
    margin-top: 3rem;
  }
  
  .floating-card {
    padding: 1.25rem 1.5rem;
    border-width: 2px;
  }
  
  .floating-card span {
    font-size: 1rem;
  }
  
  .floating-card .card-icon {
    width: 45px;
    height: 45px;
  }
  
  .floating-card .card-icon i {
    font-size: 1.5rem;
  }
  
  .card-1,
  .card-2,
  .card-3,
  .card-4 {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin-bottom: 1rem;
  }
  
  .testimonials,
  .features {
    padding: 100px 0;
  }
  
  .testimonials .section-title h2,
  .features .section-title h2 {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
  }
  
  .testimonials .section-title p,
  .features .section-title p {
    font-size: 1.15rem;
  }
  
  .testimonial-card,
  .feature-box {
    padding: 2.5rem;
  }
  
  .testimonial-avatar {
    width: 70px;
    height: 70px;
  }
  
  .avatar-icon {
    font-size: 1.3rem;
  }
  
  .testimonial-info h4 {
    font-size: 1.3rem;
  }
  
  .testimonial-content p {
    font-size: 1.05rem;
    padding: 0 1.25rem;
  }
  
  .feature-icon-box {
    width: 80px;
    height: 80px;
    margin-bottom: 1.75rem;
  }
  
  .feature-icon-box i {
    font-size: 2.25rem;
  }
  
  .feature-box h3 {
    font-size: 1.5rem;
  }
  
  .features-cta-box {
    padding: 3.5rem 2.5rem;
  }
  
  .features-cta-box h3 {
    font-size: 2.25rem;
  }
  
  .features-cta-box .lead {
    font-size: 1.15rem;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-description {
    font-size: 1.05rem;
  }
  
  .hero-visual {
    height: 350px;
  }
  
  .floating-cards {
    display: none;
  }
  
  .testimonials,
  .features {
    padding: 80px 0;
  }
  
  .testimonials .section-title h2,
  .features .section-title h2 {
    font-size: 2.25rem;
  }
  
  .testimonials .section-title p,
  .features .section-title p {
    font-size: 1.1rem;
  }
  
  .testimonial-card,
  .feature-box {
    padding: 2rem;
  }
  
  .testimonial-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  
  .testimonial-avatar {
    width: 60px;
    height: 60px;
  }
  
  .avatar-icon {
    font-size: 1.2rem;
  }
  
  .testimonial-info h4 {
    font-size: 1.2rem;
  }
  
  .testimonial-content p {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .feature-icon-box {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
  }
  
  .feature-icon-box i {
    font-size: 2rem;
  }
  
  .feature-box h3 {
    font-size: 1.35rem;
  }
  
  .features-cta-box {
    padding: 2.5rem 1.5rem;
  }
  
  .features-cta-box h3 {
    font-size: 1.75rem;
  }
  
  .features-cta-box .lead {
    font-size: 1.1rem;
  }
}

/* ============================================
   COMPLETELY REDESIGNED SUCCESS-STORIES & PRICING - NEW DESIGN
   ============================================ */

/* New Success Stories Section Design */
.success-stories {
  padding: 150px 0;
  background: linear-gradient(135deg, #1a0a00 0%, #4a1a00 50%, #2d0f00 100%);
  position: relative;
  overflow: hidden;
}

.success-stories::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 30%, rgba(255, 87, 34, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(255, 152, 0, 0.12) 0%, transparent 50%);
  z-index: 0;
}

.success-stories::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff5722, #ff9800, #ff5722, transparent);
  z-index: 1;
}

.success-stories .section-title {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.success-stories .section-title h2 {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ff5722, #ff9800, #ff5722);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
  animation: gradient-shift 3s ease infinite;
}

.success-stories .section-title p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.9;
  max-width: 850px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.success-area-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2.5rem;
  border: 2px solid rgba(255, 87, 34, 0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 87, 34, 0.2);
  z-index: 2;
}

.success-area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 87, 34, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.success-area-card:hover::before {
  opacity: 1;
}

.success-area-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff5722, #ff9800, #ff5722);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left;
  z-index: 1;
}

.success-area-card:hover::after {
  transform: scaleX(1);
}

.success-area-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 30px 80px rgba(255, 87, 34, 0.4), 0 0 60px rgba(255, 152, 0, 0.3);
  border-color: rgba(255, 87, 34, 0.6);
}

.success-area-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #ff5722, #ff9800);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  box-shadow: 0 15px 40px rgba(255, 87, 34, 0.5), 0 0 30px rgba(255, 152, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.success-area-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: icon-shine-orange 3s linear infinite;
}

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

.success-area-card:hover .success-area-icon {
  transform: rotate(15deg) scale(1.2);
  box-shadow: 0 20px 50px rgba(255, 87, 34, 0.6), 0 0 40px rgba(255, 152, 0, 0.4);
}

.success-area-card:hover .success-area-icon::before {
  opacity: 1;
}

.success-area-icon i {
  font-size: 2.75rem;
  color: white;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.3));
  position: relative;
  z-index: 1;
}

.success-area-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
  letter-spacing: -0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.success-area-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.story-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 3rem;
  border: 2px solid rgba(255, 87, 34, 0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 87, 34, 0.2);
  z-index: 2;
}

.story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 87, 34, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

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

.story-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff5722, #ff9800, #ff5722);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left;
  z-index: 1;
}

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

.story-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 80px rgba(255, 87, 34, 0.4), 0 0 60px rgba(255, 152, 0, 0.3);
  border-color: rgba(255, 87, 34, 0.6);
}

.story-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.story-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff5722, #ff9800);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 15px 40px rgba(255, 87, 34, 0.5), 0 0 30px rgba(255, 152, 0, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.story-avatar::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: avatar-shine-orange 3s linear infinite;
}

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

.story-card:hover .story-avatar {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 20px 50px rgba(255, 87, 34, 0.6), 0 0 40px rgba(255, 152, 0, 0.4);
}

.story-card:hover .story-avatar::before {
  opacity: 1;
}

.story-avatar i {
  font-size: 2rem;
  color: white;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  position: relative;
  z-index: 1;
}

.story-info {
  flex: 1;
}

.story-info h4 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
  letter-spacing: -0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.story-meta {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.story-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, rgba(255, 87, 34, 0.2) 0%, rgba(255, 152, 0, 0.2) 100%);
  border-radius: 50px;
  border: 2px solid rgba(255, 87, 34, 0.4);
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 5px 20px rgba(255, 87, 34, 0.3);
}

.story-badge i {
  color: #ff9800;
  font-size: 1.1rem;
  filter: drop-shadow(0 2px 6px rgba(255, 152, 0, 0.5));
}

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

.story-content h5 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.25rem;
  font-family: var(--heading-font);
  letter-spacing: -0.01em;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.story-content p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.story-results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(255, 87, 34, 0.3);
}

.result-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.result-item i {
  color: #00ff88;
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
  filter: drop-shadow(0 2px 8px rgba(0, 255, 136, 0.5));
  animation: result-pulse 2s ease-in-out infinite;
}

@keyframes result-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

.result-item span {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.success-cta {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 4rem 3rem;
  border: 2px solid rgba(255, 87, 34, 0.3);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3), 0 0 50px rgba(255, 87, 34, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.success-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff5722, #ff9800, #ff5722);
}

.success-cta h3 {
  font-size: 2.75rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ff5722, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
}

.success-cta .lead {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0;
  line-height: 1.9;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* New Pricing Section Design */
.pricing {
  padding: 150px 0;
  background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 25%, rgba(255, 87, 34, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 75%, rgba(255, 152, 0, 0.12) 0%, transparent 50%);
  z-index: 0;
}

.pricing::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff5722, #ff9800, #ff5722, transparent);
  z-index: 1;
}

.pricing .section-title {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.pricing .section-title h2 {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ff5722, #ff9800, #ff5722);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
  animation: gradient-shift 3s ease infinite;
}

.pricing .section-title p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.9;
  max-width: 950px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pricing-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 0;
  border: 2px solid rgba(255, 87, 34, 0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 87, 34, 0.2);
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 87, 34, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

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

.pricing-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff5722, #ff9800, #ff5722);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left;
  z-index: 1;
}

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

.pricing-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 80px rgba(255, 87, 34, 0.4), 0 0 60px rgba(255, 152, 0, 0.3);
  border-color: rgba(255, 87, 34, 0.6);
}

.pricing-card.featured {
  border-color: rgba(255, 87, 34, 0.5);
  box-shadow: 0 25px 70px rgba(255, 87, 34, 0.3), 0 0 50px rgba(255, 152, 0, 0.25);
  transform: scale(1.05);
}

.pricing-card.featured::after {
  transform: scaleX(1);
  height: 6px;
}

.pricing-card.featured:hover {
  transform: translateY(-15px) scale(1.07);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(135deg, #ff5722, #ff9800);
  color: white;
  padding: 0.5rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  transform: rotate(45deg);
  box-shadow: 0 5px 25px rgba(255, 87, 34, 0.5), 0 0 15px rgba(255, 152, 0, 0.3);
  z-index: 2;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pricing-header {
  padding: 3rem 3rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 87, 34, 0.1) 0%, transparent 100%);
  position: relative;
  z-index: 2;
}

.pricing-header h3 {
  font-size: 2.25rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  vertical-align: baseline;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.amount {
  font-size: 4.5rem;
  font-weight: 900;
  font-family: var(--heading-font);
  line-height: 1;
  background: linear-gradient(135deg, #ff5722, #ff9800, #ff5722);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite;
  filter: drop-shadow(0 2px 10px rgba(255, 87, 34, 0.4));
}

.period {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.price-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.pricing-features {
  padding: 2rem 3rem;
  flex: 1;
  position: relative;
  z-index: 2;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.pricing-features li i {
  font-size: 1.3rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.pricing-features li i.bi-check-circle-fill {
  color: #00ff88;
  filter: drop-shadow(0 2px 8px rgba(0, 255, 136, 0.5));
  animation: feature-check-pulse 2s ease-in-out infinite;
}

@keyframes feature-check-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.pricing-features li i.bi-x-circle {
  color: #ff4444;
  opacity: 0.7;
  filter: drop-shadow(0 2px 6px rgba(255, 68, 68, 0.4));
}

.pricing-footer {
  padding: 2rem 3rem 3rem;
  border-top: 2px solid rgba(255, 87, 34, 0.3);
  position: relative;
  z-index: 2;
}

.pricing-footer .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.3s ease;
  border-width: 3px;
}

.pricing-footer .btn-primary {
  background: linear-gradient(135deg, #ff5722, #ff9800);
  border: none;
  box-shadow: 0 10px 30px rgba(255, 87, 34, 0.4), 0 0 20px rgba(255, 152, 0, 0.3);
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pricing-footer .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 87, 34, 0.5), 0 0 30px rgba(255, 152, 0, 0.4);
  background: linear-gradient(135deg, #ff7043, #ffb74d);
}

.pricing-footer .btn-outline-primary {
  border-color: #ff5722;
  color: #ffffff;
  background: transparent;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pricing-footer .btn-outline-primary:hover {
  background: linear-gradient(135deg, #ff5722, #ff9800);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 87, 34, 0.4);
}

.pricing-footer .text-muted {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1rem;
  font-weight: 500;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.pricing-comparison {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 3.5rem;
  border: 2px solid rgba(255, 87, 34, 0.3);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3), 0 0 50px rgba(255, 87, 34, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.pricing-comparison::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff5722, #ff9800, #ff5722);
}

.pricing-comparison h3 {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ff5722, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2.5rem;
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
}

.pricing-comparison .table {
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
}

.pricing-comparison .table thead th {
  background: linear-gradient(135deg, rgba(255, 87, 34, 0.15) 0%, rgba(255, 152, 0, 0.15) 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 1.5rem;
  border: 2px solid rgba(255, 87, 34, 0.3);
  text-align: center;
  font-family: var(--heading-font);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pricing-comparison .table thead th:first-child {
  text-align: left;
  border-radius: 12px 0 0 0;
}

.pricing-comparison .table thead th:last-child {
  border-radius: 0 12px 0 0;
}

.pricing-comparison .table tbody td {
  padding: 1.25rem 1.5rem;
  border: 2px solid rgba(255, 87, 34, 0.2);
  vertical-align: middle;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.pricing-comparison .table tbody td:first-child {
  font-weight: 700;
  color: #ffffff;
  background: rgba(255, 87, 34, 0.1);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pricing-comparison .table tbody tr:hover {
  background: rgba(255, 87, 34, 0.15);
}

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

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

.pricing-comparison .table tbody td i.bi-check-circle {
  color: #00ff88;
  filter: drop-shadow(0 2px 8px rgba(0, 255, 136, 0.5));
}

.pricing-comparison .table tbody td i.bi-x-circle {
  color: #ff4444;
  filter: drop-shadow(0 2px 6px rgba(255, 68, 68, 0.4));
}

.pricing-cta {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 4rem 3rem;
  border: 2px solid rgba(255, 87, 34, 0.3);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3), 0 0 50px rgba(255, 87, 34, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.pricing-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff5722, #ff9800, #ff5722);
}

.pricing-cta h3 {
  font-size: 2.75rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ff5722, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
}

.pricing-cta .lead {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0;
  line-height: 1.9;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments for success-stories and pricing */
@media (max-width: 991px) {
  .success-stories,
  .pricing {
    padding: 100px 0;
  }
  
  .success-stories .section-title h2,
  .pricing .section-title h2 {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
  }
  
  .success-stories .section-title p,
  .pricing .section-title p {
    font-size: 1.15rem;
  }
  
  .success-area-card,
  .story-card {
    padding: 2.5rem;
  }
  
  .success-area-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
  }
  
  .success-area-icon i {
    font-size: 2.5rem;
  }
  
  .story-avatar {
    width: 70px;
    height: 70px;
  }
  
  .story-avatar i {
    font-size: 1.75rem;
  }
  
  .pricing-card {
    margin-bottom: 2rem;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-15px) scale(1.02);
  }
  
  .pricing-header,
  .pricing-features,
  .pricing-footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .amount {
    font-size: 3.75rem;
  }
  
  .pricing-comparison {
    padding: 2.5rem;
  }
  
  .success-cta,
  .pricing-cta {
    padding: 3.5rem 2.5rem;
  }
  
  .success-cta h3,
  .pricing-cta h3 {
    font-size: 2.25rem;
  }
  
  .pricing-comparison h3 {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .success-stories,
  .pricing {
    padding: 80px 0;
  }
  
  .success-stories .section-title h2,
  .pricing .section-title h2 {
    font-size: 2.25rem;
  }
  
  .success-stories .section-title p,
  .pricing .section-title p {
    font-size: 1.1rem;
  }
  
  .success-area-card,
  .story-card {
    padding: 2rem;
  }
  
  .success-area-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.25rem;
  }
  
  .success-area-icon i {
    font-size: 2.25rem;
  }
  
  .success-area-title {
    font-size: 1.4rem;
  }
  
  .story-avatar {
    width: 60px;
    height: 60px;
  }
  
  .story-avatar i {
    font-size: 1.5rem;
  }
  
  .story-info h4 {
    font-size: 1.3rem;
  }
  
  .story-content h5 {
    font-size: 1.3rem;
  }
  
  .story-content p {
    font-size: 1.05rem;
  }
  
  .pricing-card {
    margin-bottom: 2rem;
  }
  
  .pricing-header,
  .pricing-features,
  .pricing-footer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .pricing-header h3 {
    font-size: 1.75rem;
  }
  
  .amount {
    font-size: 3rem;
  }
  
  .pricing-comparison {
    padding: 2rem 1.5rem;
  }
  
  .pricing-comparison h3 {
    font-size: 1.75rem;
  }
  
  .success-cta,
  .pricing-cta {
    padding: 2.5rem 1.5rem;
  }
  
  .success-cta h3,
  .pricing-cta h3 {
    font-size: 1.75rem;
  }
  
/* Responsive adjustments for features-slider */
@media (max-width: 991px) {
  #features-slider {
    padding: 100px 0;
  }
  
  #features-slider .section-title h2 {
    font-size: 2.75rem;
  }
  
  #features-slider .section-title p {
    font-size: 1.15rem;
  }
  
  .program-slide {
    padding: 2.5rem;
  }
  
  .program-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
  }
  
  .program-icon i {
    font-size: 2.5rem;
  }
  
  .program-slide h3 {
    font-size: 1.65rem;
  }
  
  .program-subtitle {
    font-size: 1.05rem;
  }
  
  .program-feature {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .program-feature strong {
    font-size: 1.1rem;
  }
  
  .program-feature p {
    font-size: 0.95rem;
  }
  
  .stat-mini .stat-value {
    font-size: 1.75rem;
  }
}

@media (max-width: 767px) {
  #features-slider {
    padding: 80px 0;
  }
  
  #features-slider .section-title h2 {
    font-size: 2.25rem;
  }
  
  #features-slider .section-title p {
    font-size: 1.1rem;
  }
  
  .program-slide {
    padding: 2rem;
  }
  
  .program-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.25rem;
  }
  
  .program-icon i {
    font-size: 2.25rem;
  }
  
  .program-slide h3 {
    font-size: 1.5rem;
  }
  
  .program-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .program-feature {
    gap: 0.875rem;
    margin-bottom: 1.25rem;
  }
  
  .program-feature i {
    font-size: 1.3rem;
  }
  
  .program-feature strong {
    font-size: 1.05rem;
  }
  
  .program-feature p {
    font-size: 0.9rem;
  }
  
  .program-stats {
    padding-top: 1.5rem;
    gap: 0.75rem;
  }
  
  .stat-mini .stat-value {
    font-size: 1.5rem;
  }
  
  .stat-mini .stat-text {
    font-size: 0.85rem;
  }
}
  
  .story-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  
  .story-badge {
    align-self: flex-start;
  }
  
  .pricing-header {
    padding: 2.5rem 2rem 1.5rem;
  }
  
  .pricing-features {
    padding: 1.5rem 2rem;
  }
  
  .pricing-footer {
    padding: 1.5rem 2rem 2.5rem;
  }
  
  .amount {
    font-size: 3rem;
  }
  
  .pricing-comparison {
    padding: 2rem 1rem;
    overflow-x: auto;
  }
  
  .pricing-comparison .table {
    font-size: 0.9rem;
  }
  
  .pricing-comparison .table thead th,
  .pricing-comparison .table tbody td {
    padding: 1rem 0.75rem;
  }
  
  .success-cta,
  .pricing-cta {
    padding: 2.5rem 1.5rem;
  }
  
  .success-cta h3,
  .pricing-cta h3 {
    font-size: 1.75rem;
  }
}
