/********** Template CSS **********/
:root {
    --primary: #0c9f15;
    --light: #39ff072b;
    --dark: #0c9f15;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #ffffff;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
   font-family: "PT Sans Narrow", sans-serif;
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #eeeeee;
    }
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar.sticky-top {
    top: -100px;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: 0.5s;
        opacity: 1;
    }
}

/*** Header ***/
.lifeprogression-header {
  background-color: #3b0a24;
  padding: 20px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.lifeprogression-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.lifeprogression-logo {
  color: #f1d24b;
  font-size: 1.8rem;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease, color 0.3s ease;
}
.lifeprogression-logo:hover {
  transform: scale(1.05);
  color: #ffe45c;
}
.lifeprogression-navigation {
  display: flex;
  gap: 25px;
  align-items: center;
}
.lifeprogression-nav-link {
  color: #f8f3e0;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}
.lifeprogression-nav-link:hover,
.lifeprogression-nav-link.active {
  color: #ffe45c;
}
.lifeprogression-nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffe45c;
  transition: width 0.3s ease;
}
.lifeprogression-nav-link:hover::after,
.lifeprogression-nav-link.active::after {
  width: 100%;
}

/* Dropdown Styles */
.lifeprogression-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.lifeprogression-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}
.lifeprogression-dropdown-toggle i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}
.lifeprogression-dropdown.active .lifeprogression-dropdown-toggle i {
  transform: rotate(180deg);
}
.lifeprogression-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #4d1a1a;
  min-width: 200px;
  padding: 10px 0;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 10px;
  z-index: 1001;
}
.lifeprogression-dropdown.active .lifeprogression-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lifeprogression-dropdown-item {
  display: block;
  padding: 12px 20px;
  color: #f8f3e0;
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}
.lifeprogression-dropdown-item:hover {
  background-color: #5d2a2a;
  color: #ffe45c;
  border-left-color: #ffe45c;
  padding-left: 25px;
}

.lifeprogression-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.lifeprogression-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #f1d24b;
  display: block;
  transition: all 0.3s ease;
}
.lifeprogression-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.lifeprogression-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.lifeprogression-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
  .lifeprogression-navigation {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #3b0a24;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .lifeprogression-navigation.show {
    display: flex;
  }
  .lifeprogression-menu-toggle {
    display: flex;
  }
  .lifeprogression-nav-link {
    padding: 12px 0;
    width: 100%;
    justify-content: space-between;
  }
  .lifeprogression-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .lifeprogression-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 12px 0;
    position: relative;
  }
  .lifeprogression-dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(241, 210, 75, 0.2);
  }
  .lifeprogression-dropdown.active .lifeprogression-dropdown-toggle {
    color: #ffe45c;
  }
  .lifeprogression-dropdown.active .lifeprogression-dropdown-toggle::after {
    background: rgba(241, 210, 75, 0.5);
  }
  .lifeprogression-dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    margin-top: 0;
    margin-left: 0;
    padding: 0;
    box-shadow: none;
    background-color: rgba(77, 26, 26, 0.5);
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    min-width: auto;
    border: 1px solid transparent;
  }
  .lifeprogression-dropdown.active .lifeprogression-dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
    margin-top: 10px;
    padding: 10px 0;
    transform: none;
    border-color: rgba(241, 210, 75, 0.3);
  }
  .lifeprogression-dropdown-item {
    padding: 12px 20px;
    border-left: none;
    border-bottom: 1px solid rgba(241, 210, 75, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .lifeprogression-dropdown-item::before {
    content: '→';
    color: rgba(241, 210, 75, 0.5);
    transition: all 0.3s ease;
  }
  .lifeprogression-dropdown-item:last-child {
    border-bottom: none;
  }
  .lifeprogression-dropdown-item:hover,
  .lifeprogression-dropdown-item:active {
    padding-left: 25px;
    background-color: rgba(93, 42, 42, 0.5);
    color: #ffe45c;
  }
  .lifeprogression-dropdown-item:hover::before,
  .lifeprogression-dropdown-item:active::before {
    color: #ffe45c;
    transform: translateX(5px);
  }
}

/*** Service ***/
/* New Services Section */
.lifeprogression-services-new {
  position: relative;
  background: linear-gradient(180deg, #1a0508 0%, #2e0d14 50%, #1a0508 100%);
  padding: 120px 20px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

.lifeprogression-services-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.services-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(241, 210, 75, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 228, 92, 0.05) 0%, transparent 50%);
  animation: patternMove 30s ease-in-out infinite;
}

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

.lifeprogression-services-container-new {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 80px;
  animation: fadeInUp 0.8s ease-out;
}

.services-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(241, 210, 75, 0.1);
  border: 1px solid rgba(241, 210, 75, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #f1d24b;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.lifeprogression-services-title-new {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #f8f3e0;
}

.title-part-1,
.title-part-3 {
  display: block;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.title-part-2 {
  display: block;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

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

.services-subtitle {
  font-size: 1.2rem;
  color: rgba(248, 243, 224, 0.7);
  max-width: 600px;
  margin: 0 auto;
  animation: fadeIn 1s ease-out 0.6s both;
}

.lifeprogression-services-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.lifeprogression-service-card-new {
  position: relative;
  height: 100%;
  animation: fadeInUp 0.8s ease-out both;
}

.lifeprogression-service-card-new:nth-child(1) {
  animation-delay: 0.2s;
}

.lifeprogression-service-card-new:nth-child(2) {
  animation-delay: 0.4s;
}

.lifeprogression-service-card-new:nth-child(3) {
  animation-delay: 0.6s;
}

.service-card-inner {
  position: relative;
  z-index: 2;
  background: rgba(248, 243, 224, 0.03);
  border: 1px solid rgba(241, 210, 75, 0.2);
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow: hidden;
}

.lifeprogression-service-card-new:hover .service-card-inner {
  background: rgba(248, 243, 224, 0.06);
  border-color: rgba(241, 210, 75, 0.4);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(241, 210, 75, 0.2);
}

.service-card-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(241, 210, 75, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
  border-radius: 24px;
}

.lifeprogression-service-card-new:hover .service-card-hover-effect {
  opacity: 1;
}

.service-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
}

.service-icon {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b0a24;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.service-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(241, 210, 75, 0.3);
  border-radius: 20px;
  filter: blur(20px);
  animation: iconGlow 3s ease-in-out infinite;
}

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

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

.service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(241, 210, 75, 0.1);
  line-height: 1;
  z-index: 0;
}

.service-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f1d24b;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.service-description {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(248, 243, 224, 0.8);
  margin-bottom: 25px;
  flex: 1;
  position: relative;
  z-index: 2;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.service-feature {
  padding: 6px 14px;
  background: rgba(241, 210, 75, 0.1);
  border: 1px solid rgba(241, 210, 75, 0.3);
  border-radius: 20px;
  font-size: 0.85rem;
  color: #f1d24b;
  transition: all 0.3s ease;
}

.lifeprogression-service-card-new:hover .service-feature {
  background: rgba(241, 210, 75, 0.2);
  border-color: rgba(241, 210, 75, 0.5);
  transform: translateY(-2px);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f1d24b;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

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

.service-link:hover {
  color: #ffe45c;
  gap: 15px;
}

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

@media (max-width: 768px) {
  .lifeprogression-services-title-new {
    font-size: 2.5rem;
  }
  
  .lifeprogression-services-grid-new {
    grid-template-columns: 1fr;
  }
  
  .service-card-inner {
    padding: 30px;
  }
}

@media (min-width: 992px) {
  .container.feature {
    max-width: 100% !important;
  }

  .feature-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .feature-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .feature-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #ffffff;
    transition: 0.3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #ffffff;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
   font-family: "PT Sans Narrow", sans-serif;
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

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

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

.footer .copyright a:hover {
    color: var(--primary);
}
/* Google Fonts - Poppins */
@media (max-width: 700px) {
    .cookie-wrapper {
        width: 100%;
    }
}

/* New Cookie Banner Styles */
.lifeprogression-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 0 20px 20px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.lifeprogression-cookie-banner.show {
    transform: translateY(0);
    pointer-events: all;
}

.lifeprogression-cookie-banner.hidden {
    display: none;
}

.lifeprogression-cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #2e0d14 0%, #3b0a24 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(241, 210, 75, 0.2);
    border: 2px solid rgba(241, 210, 75, 0.3);
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: center;
    animation: cookieSlideUp 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.lifeprogression-cookie-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.lifeprogression-cookie-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f1d24b, #ffe45c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b0a24;
    font-size: 2rem;
    position: relative;
    z-index: 2;
    animation: cookieIconBounce 2s ease-in-out infinite;
    box-shadow: 0 5px 20px rgba(241, 210, 75, 0.4);
}

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

.lifeprogression-cookie-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(241, 210, 75, 0.3);
    animation: cookiePulse 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes cookiePulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.lifeprogression-cookie-content {
    flex: 1;
}

.lifeprogression-cookie-title {
    color: #f1d24b;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lifeprogression-cookie-text {
    color: #f8f3e0;
    line-height: 1.7;
    margin: 0 0 15px 0;
    font-size: 0.95rem;
}

.lifeprogression-cookie-link {
    color: #ffe45c;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.lifeprogression-cookie-link:hover {
    color: #f1d24b;
    gap: 10px;
}

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

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

.lifeprogression-cookie-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.lifeprogression-cookie-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.lifeprogression-cookie-btn span {
    position: relative;
    z-index: 1;
}

.lifeprogression-cookie-btn i {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.lifeprogression-cookie-decline {
    background: rgba(248, 243, 224, 0.1);
    color: #f8f3e0;
    border: 2px solid rgba(248, 243, 224, 0.3);
}

.lifeprogression-cookie-decline:hover {
    background: rgba(248, 243, 224, 0.2);
    border-color: rgba(248, 243, 224, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(248, 243, 224, 0.2);
}

.lifeprogression-cookie-accept {
    background: linear-gradient(135deg, #f1d24b, #ffe45c);
    color: #3b0a24;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(241, 210, 75, 0.3);
}

.lifeprogression-cookie-accept:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(241, 210, 75, 0.5);
}

.lifeprogression-cookie-accept:hover i {
    transform: scale(1.2) rotate(360deg);
}

.lifeprogression-cookie-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(248, 243, 224, 0.1);
    border: 2px solid rgba(248, 243, 224, 0.3);
    color: #f8f3e0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lifeprogression-cookie-close:hover {
    background: rgba(248, 243, 224, 0.2);
    border-color: rgba(248, 243, 224, 0.5);
    transform: rotate(90deg) scale(1.1);
}

.lifeprogression-cookie-close i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .lifeprogression-cookie-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px 20px;
    }
    
    .lifeprogression-cookie-icon-wrapper {
        justify-self: center;
    }
    
    .lifeprogression-cookie-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .lifeprogression-cookie-btn {
        width: 100%;
        justify-content: center;
    }
    
    .lifeprogression-cookie-title {
        font-size: 1.3rem;
    }
}
/* New Footer Style */
.lifeprogression-footer-new {
  background: linear-gradient(180deg, #1a0508 0%, #2e0d14 50%, #3b0a24 100%);
  color: #f8f3e0;
  position: relative;
  overflow: hidden;
  margin-top: 100px;
}

.lifeprogression-footer-waves {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.lifeprogression-wave {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
  animation: waveAnimation 15s ease-in-out infinite;
}

@keyframes waveAnimation {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25px);
  }
}

.lifeprogression-footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 30px 30px;
  position: relative;
  z-index: 1;
}

.lifeprogression-footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.lifeprogression-footer-column {
  animation: footerColumnFadeIn 0.8s ease-out forwards;
  opacity: 0;
}

.lifeprogression-footer-column:nth-child(1) { animation-delay: 0.1s; }
.lifeprogression-footer-column:nth-child(2) { animation-delay: 0.2s; }
.lifeprogression-footer-column:nth-child(3) { animation-delay: 0.3s; }
.lifeprogression-footer-column:nth-child(4) { animation-delay: 0.4s; }

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

.lifeprogression-footer-logo-section {
  margin-bottom: 25px;
  position: relative;
}

.lifeprogression-footer-logo {
  font-size: 2.5rem;
  font-weight: 900;
  color: #f1d24b;
  margin: 0;
  background: linear-gradient(135deg, #f1d24b 0%, #ffe45c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.lifeprogression-footer-logo-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #f1d24b, #ffe45c);
  margin-top: 10px;
  border-radius: 2px;
  animation: logoLineExpand 3s ease-in-out infinite;
}

@keyframes logoLineExpand {
  0%, 100% {
    width: 80px;
  }
  50% {
    width: 120px;
  }
}

.lifeprogression-footer-description {
  color: #f8f3e0;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

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

.lifeprogression-social-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(241, 210, 75, 0.1);
  border: 2px solid rgba(241, 210, 75, 0.3);
  color: #f1d24b;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.lifeprogression-social-ripple {
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(241, 210, 75, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.lifeprogression-social-btn:hover .lifeprogression-social-ripple {
  width: 300px;
  height: 300px;
}

.lifeprogression-social-btn:hover {
  background: #f1d24b;
  color: #3b0a24;
  border-color: #ffe45c;
  transform: translateY(-5px) rotate(5deg) scale(1.1);
  box-shadow: 0 10px 30px rgba(241, 210, 75, 0.5);
}

.lifeprogression-social-btn i {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
}

.lifeprogression-footer-heading {
  color: #f1d24b;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.lifeprogression-footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #f1d24b, transparent);
  border-radius: 2px;
}

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

.lifeprogression-footer-nav-list li {
  margin-bottom: 15px;
}

.lifeprogression-footer-nav-link {
  color: #f8f3e0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  padding: 8px 0;
  position: relative;
  font-size: 0.95rem;
}

.lifeprogression-link-icon {
  color: #f1d24b;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.lifeprogression-footer-nav-link:hover {
  color: #ffe45c;
  padding-left: 10px;
}

.lifeprogression-footer-nav-link:hover .lifeprogression-link-icon {
  transform: translateX(5px);
}

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

.lifeprogression-contact-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: rgba(241, 210, 75, 0.05);
  border-radius: 10px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.lifeprogression-contact-box:hover {
  background: rgba(241, 210, 75, 0.1);
  border-left-color: #f1d24b;
  transform: translateX(5px);
}

.lifeprogression-contact-icon-wrapper {
  width: 40px;
  height: 40px;
  background: rgba(241, 210, 75, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.lifeprogression-contact-box:hover .lifeprogression-contact-icon-wrapper {
  background: #f1d24b;
  transform: rotate(360deg) scale(1.1);
}

.lifeprogression-contact-icon-wrapper i {
  color: #f1d24b;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.lifeprogression-contact-box:hover .lifeprogression-contact-icon-wrapper i {
  color: #3b0a24;
}

.lifeprogression-contact-text {
  flex: 1;
}

.lifeprogression-contact-text p {
  margin: 0;
  color: #f8f3e0;
  line-height: 1.6;
  font-size: 0.9rem;
}

.lifeprogression-footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 210, 75, 0.3), transparent);
  margin: 40px 0 30px;
  position: relative;
}

.lifeprogression-footer-divider::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 1px;
  background: #f1d24b;
  animation: dividerPulse 2s ease-in-out infinite;
}

@keyframes dividerPulse {
  0%, 100% {
    width: 100px;
    opacity: 1;
  }
  50% {
    width: 200px;
    opacity: 0.7;
  }
}

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

.lifeprogression-footer-copyright {
  color: rgba(248, 243, 224, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.lifeprogression-scroll-top-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  border: none;
  color: #3b0a24;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(241, 210, 75, 0.4);
}

.lifeprogression-scroll-ripple {
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(59, 10, 36, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.lifeprogression-scroll-top-btn:hover .lifeprogression-scroll-ripple {
  width: 200px;
  height: 200px;
}

.lifeprogression-scroll-top-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(241, 210, 75, 0.6);
}

.lifeprogression-scroll-top-btn i {
  position: relative;
  z-index: 1;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.lifeprogression-scroll-top-btn:hover i {
  transform: translateY(-3px);
}

@media (max-width: 1024px) {
  .lifeprogression-footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .lifeprogression-footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .lifeprogression-footer-bottom-new {
    flex-direction: column;
    text-align: center;
  }
}


/* New Hero Section */
.lifeprogression-hero-new {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0406;
  color: #f8f3e0;
  font-family: 'PT Sans Narrow', sans-serif;
  padding: 120px 20px 80px;
}

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

.lifeprogression-hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #f1d24b;
  border-radius: 50%;
  opacity: 0.6;
  animation: particleFloat 15s infinite ease-in-out;
}

.particle:nth-child(1) {
  left: 10%;
  top: 20%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.particle:nth-child(2) {
  left: 30%;
  top: 60%;
  animation-delay: 2s;
  animation-duration: 18s;
}

.particle:nth-child(3) {
  left: 70%;
  top: 30%;
  animation-delay: 4s;
  animation-duration: 14s;
}

.particle:nth-child(4) {
  left: 50%;
  top: 80%;
  animation-delay: 1s;
  animation-duration: 16s;
}

.particle:nth-child(5) {
  left: 80%;
  top: 50%;
  animation-delay: 3s;
  animation-duration: 13s;
}

.particle:nth-child(6) {
  left: 20%;
  top: 70%;
  animation-delay: 5s;
  animation-duration: 17s;
}

.particle:nth-child(7) {
  left: 60%;
  top: 10%;
  animation-delay: 2.5s;
  animation-duration: 15s;
}

.particle:nth-child(8) {
  left: 90%;
  top: 40%;
  animation-delay: 4.5s;
  animation-duration: 19s;
}

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

.lifeprogression-hero-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(241, 210, 75, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 228, 92, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(59, 10, 36, 0.3) 0%, transparent 70%);
  animation: gradientShift 20s ease-in-out infinite;
}

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

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

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(241, 210, 75, 0.1), rgba(255, 228, 92, 0.05));
  filter: blur(40px);
}

.shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  animation: shapeFloat1 25s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  right: -50px;
  animation: shapeFloat2 30s ease-in-out infinite;
}

.shape-3 {
  width: 250px;
  height: 250px;
  top: 50%;
  right: 10%;
  animation: shapeFloat3 20s ease-in-out infinite;
}

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

@keyframes shapeFloat2 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-30px, -30px) rotate(-180deg);
  }
}

@keyframes shapeFloat3 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(40px, -40px) rotate(90deg);
  }
}

.lifeprogression-hero-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lifeprogression-hero-content {
  animation: fadeInUp 1s ease-out;
}

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

.lifeprogression-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(241, 210, 75, 0.1);
  border: 1px solid rgba(241, 210, 75, 0.3);
  border-radius: 50px;
  font-size: 0.9rem;
  color: #f1d24b;
  margin-bottom: 30px;
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(241, 210, 75, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(241, 210, 75, 0);
  }
}

.badge-icon {
  font-size: 1.2rem;
  animation: iconRotate 3s ease-in-out infinite;
}

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

.lifeprogression-hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 30px;
  color: #f8f3e0;
}

.title-line {
  display: block;
  overflow: hidden;
}

.title-line-1 {
  animation: slideInLeft 0.8s ease-out 0.2s both;
}

.title-line-2 {
  animation: slideInLeft 0.8s ease-out 0.4s both;
}

.title-line-3 {
  animation: slideInLeft 0.8s ease-out 0.6s both;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.title-highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #f1d24b, #ffe45c);
  border-radius: 2px;
  animation: underlineExpand 1s ease-out 1.2s both;
}

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

.lifeprogression-hero-description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(248, 243, 224, 0.8);
  margin-bottom: 40px;
  max-width: 600px;
  animation: fadeIn 1s ease-out 0.8s both;
}

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

.lifeprogression-hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 1s both;
}

.lifeprogression-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.lifeprogression-hero-btn-primary {
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  color: #3b0a24;
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(241, 210, 75, 0.3);
}

.lifeprogression-hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(241, 210, 75, 0.5);
}

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

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

.lifeprogression-hero-btn-secondary {
  background: rgba(248, 243, 224, 0.1);
  color: #f8f3e0;
  border: 2px solid rgba(248, 243, 224, 0.3);
}

.lifeprogression-hero-btn-secondary:hover {
  background: rgba(248, 243, 224, 0.2);
  border-color: rgba(248, 243, 224, 0.5);
  transform: translateY(-3px);
}

.lifeprogression-hero-btn span {
  position: relative;
  z-index: 1;
}

.lifeprogression-hero-btn i {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
}

.lifeprogression-hero-stats-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  animation: fadeInUp 1s ease-out 1.2s both;
}

.lifeprogression-stat-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(248, 243, 224, 0.05);
  border: 1px solid rgba(241, 210, 75, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.lifeprogression-stat-card:hover {
  background: rgba(248, 243, 224, 0.1);
  border-color: rgba(241, 210, 75, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(241, 210, 75, 0.2);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b0a24;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.stat-content {
  flex: 1;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f1d24b;
  margin-bottom: 8px;
  line-height: 1.3;
}

.stat-description {
  font-size: 0.9rem;
  color: rgba(248, 243, 224, 0.7);
  line-height: 1.5;
}

.lifeprogression-hero-visual {
  position: relative;
  animation: fadeInRight 1s ease-out 0.4s both;
}

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

.lifeprogression-hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
}

.hero-image-main {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: imageFloat 6s ease-in-out infinite;
}

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

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

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

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 10, 36, 0.3), rgba(46, 13, 20, 0.5));
  pointer-events: none;
}

.hero-floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(248, 243, 224, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 10;
  animation: cardFloat 4s ease-in-out infinite;
}

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

.card-2 {
  bottom: 20%;
  right: -20px;
  animation-delay: 1.5s;
}

.card-3 {
  top: 50%;
  left: -30px;
  animation-delay: 3s;
}

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

.floating-card-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b0a24;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.floating-card-text {
  display: flex;
  flex-direction: column;
}

.floating-card-text strong {
  font-size: 0.9rem;
  color: #3b0a24;
  font-weight: 700;
  line-height: 1.2;
}

.floating-card-text span {
  font-size: 0.75rem;
  color: rgba(59, 10, 36, 0.7);
}

.hero-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(241, 210, 75, 0.2), transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
}

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

.lifeprogression-hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}

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

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(248, 243, 224, 0.6);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, #f1d24b, transparent);
  border-radius: 2px;
}

@media (max-width: 1024px) {
  .lifeprogression-hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .lifeprogression-hero-title {
    font-size: 3.5rem;
  }
  
  .lifeprogression-hero-image-wrapper {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .lifeprogression-hero-new {
    min-height: auto;
    padding: 100px 20px 60px;
  }
  
  .lifeprogression-hero-title {
    font-size: 2.5rem;
  }
  
  .lifeprogression-hero-description {
    font-size: 1.1rem;
  }
  
  .lifeprogression-hero-actions {
    flex-direction: column;
  }
  
  .lifeprogression-hero-btn {
    width: 100%;
    justify-content: center;
  }
  
  .lifeprogression-hero-stats-new {
    grid-template-columns: 1fr;
  }
  
  .hero-floating-card {
    display: none;
  }
}

.lifeprogression-about {
  background: #1b0a0e;
  padding: 100px 20px;
  font-family: 'PT Sans Narrow', sans-serif;
}

.lifeprogression-about-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.lifeprogression-about-image {
  flex: 1 1 40%;
  height: 300px;
  background-image: url('img/carousel-1.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(255, 239, 184, 0.1);
}

.lifeprogression-about-content {
  flex: 1 1 50%;
}

.lifeprogression-about-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffd43b;
}

.lifeprogression-about-content p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #f8e3a3;
  line-height: 1.6;
}

.lifeprogression-about-content ul {
  list-style: none;
  padding: 0;
}

.lifeprogression-about-content li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: #fff3bf;
}

.lifeprogression-about-content li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #facc15;
  font-weight: bold;
}

/* New Why Section */
.lifeprogression-why-new {
  position: relative;
  background: linear-gradient(180deg, #2e0d14 0%, #3b0a24 50%, #2e0d14 100%);
  padding: 120px 20px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

.lifeprogression-why-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.why-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 40%, rgba(241, 210, 75, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 60%, rgba(255, 228, 92, 0.06) 0%, transparent 50%);
  animation: patternMove 35s ease-in-out infinite;
}

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

.why-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(241, 210, 75, 0.1), rgba(255, 228, 92, 0.05));
  filter: blur(50px);
}

.why-shape-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -150px;
  animation: whyShapeFloat1 30s ease-in-out infinite;
}

.why-shape-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  animation: whyShapeFloat2 25s ease-in-out infinite;
}

@keyframes whyShapeFloat1 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-30px, 30px) rotate(180deg);
  }
}

@keyframes whyShapeFloat2 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(40px, -40px) rotate(-180deg);
  }
}

.lifeprogression-why-container-new {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.why-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lifeprogression-why-text-new {
  animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.why-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(241, 210, 75, 0.1);
  border: 1px solid rgba(241, 210, 75, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #f1d24b;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.why-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #f8f3e0;
}

.why-title-line-1 {
  display: block;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.why-title-line-2 {
  display: block;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

.why-description {
  margin-bottom: 40px;
}

.why-text-main {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(248, 243, 224, 0.9);
  margin-bottom: 20px;
  animation: fadeIn 1s ease-out 0.6s both;
}

.why-text-secondary {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(248, 243, 224, 0.7);
  animation: fadeIn 1s ease-out 0.8s both;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
  animation: fadeInUp 1s ease-out 1s both;
}

.why-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(248, 243, 224, 0.03);
  border: 1px solid rgba(241, 210, 75, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.why-feature-item:hover {
  background: rgba(248, 243, 224, 0.06);
  border-color: rgba(241, 210, 75, 0.4);
  transform: translateX(10px);
}

.why-feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b0a24;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

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

.why-feature-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f1d24b;
  margin-bottom: 8px;
}

.why-feature-content p {
  font-size: 0.95rem;
  color: rgba(248, 243, 224, 0.8);
  line-height: 1.6;
  margin: 0;
}

.lifeprogression-why-visual-new {
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.4s both;
}

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

.why-image-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
}

.why-image-main {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: whyImageFloat 8s ease-in-out infinite;
}

@keyframes whyImageFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(-1deg);
  }
}

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

.why-image-main:hover .why-img {
  transform: scale(1.1);
}

.why-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 10, 36, 0.2), rgba(46, 13, 20, 0.4));
  pointer-events: none;
}

.why-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.why-floating-element {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(248, 243, 224, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  color: #3b0a24;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 10;
  animation: whyElementFloat 5s ease-in-out infinite;
}

.why-floating-element i {
  color: #f1d24b;
  font-size: 1.2rem;
}

.element-1 {
  top: 15%;
  right: -30px;
  animation-delay: 0s;
}

.element-2 {
  bottom: 30%;
  left: -40px;
  animation-delay: 2s;
}

.element-3 {
  top: 50%;
  right: -20px;
  animation-delay: 4s;
}

@keyframes whyElementFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(3deg);
  }
}

.why-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(241, 210, 75, 0.15), transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  animation: whyGlowPulse 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes whyGlowPulse {
  0%, 100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@media (max-width: 1024px) {
  .why-content-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .why-title {
    font-size: 3rem;
  }
  
  .why-image-wrapper {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .why-title {
    font-size: 2.5rem;
  }
  
  .why-floating-element {
    display: none;
  }
}

/* New Testimonials Section */
.lifeprogression-testimonials-new {
  position: relative;
  background: linear-gradient(180deg, #1a0508 0%, #2e0d14 50%, #1a0508 100%);
  padding: 120px 20px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

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

.testimonials-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(241, 210, 75, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 228, 92, 0.04) 0%, transparent 50%);
  animation: patternMove 30s ease-in-out infinite;
}

.lifeprogression-testimonials-container-new {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
  animation: fadeInUp 0.8s ease-out;
}

.testimonials-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(241, 210, 75, 0.1);
  border: 1px solid rgba(241, 210, 75, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #f1d24b;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.testimonials-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #f8f3e0;
}

.testimonials-title-line-1 {
  display: block;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.testimonials-title-line-2 {
  display: block;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

.testimonials-subtitle {
  font-size: 1.2rem;
  color: rgba(248, 243, 224, 0.7);
  max-width: 600px;
  margin: 0 auto;
  animation: fadeIn 1s ease-out 0.6s both;
}

.lifeprogression-testimonials-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.lifeprogression-testimonial-new {
  animation: fadeInUp 0.8s ease-out both;
}

.lifeprogression-testimonial-new:nth-child(1) {
  animation-delay: 0.2s;
}

.lifeprogression-testimonial-new:nth-child(2) {
  animation-delay: 0.4s;
}

.lifeprogression-testimonial-new:nth-child(3) {
  animation-delay: 0.6s;
}

.testimonial-card {
  position: relative;
  background: rgba(248, 243, 224, 0.05);
  border: 1px solid rgba(241, 210, 75, 0.2);
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow: hidden;
}

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

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

.testimonial-card:hover {
  background: rgba(248, 243, 224, 0.08);
  border-color: rgba(241, 210, 75, 0.4);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(241, 210, 75, 0.2);
}

.testimonial-quote-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b0a24;
  font-size: 2rem;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  animation: quoteIconPulse 3s ease-in-out infinite;
}

@keyframes quoteIconPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(241, 210, 75, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(241, 210, 75, 0);
  }
}

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

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(248, 243, 224, 0.9);
  font-style: italic;
  margin: 0;
  position: relative;
}

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

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  border-top: 1px solid rgba(241, 210, 75, 0.2);
  position: relative;
  z-index: 2;
}

.testimonial-author-info {
  flex: 1;
}

.testimonial-author-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f1d24b;
  margin: 0 0 5px 0;
}

.testimonial-author-role {
  font-size: 0.9rem;
  color: rgba(248, 243, 224, 0.7);
  margin: 0;
}

.testimonial-rating {
  display: flex;
  gap: 5px;
}

.testimonial-rating i {
  color: #f1d24b;
  font-size: 1rem;
  animation: starTwinkle 2s ease-in-out infinite;
}

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

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

.testimonial-card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(241, 210, 75, 0.1), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

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

@media (max-width: 768px) {
  .testimonials-title {
    font-size: 2.5rem;
  }
  
  .lifeprogression-testimonials-grid-new {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    padding: 30px;
  }
  
  .testimonial-author {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* New Team Section */
.lifeprogression-team-new {
  position: relative;
  background: linear-gradient(180deg, #0a0406 0%, #1a0508 50%, #0a0406 100%);
  padding: 120px 20px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

.lifeprogression-team-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.team-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(241, 210, 75, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(255, 228, 92, 0.04) 0%, transparent 50%);
  animation: patternMove 25s ease-in-out infinite;
}

.lifeprogression-team-container-new {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.team-header {
  text-align: center;
  margin-bottom: 80px;
  animation: fadeInUp 0.8s ease-out;
}

.team-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(241, 210, 75, 0.1);
  border: 1px solid rgba(241, 210, 75, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #f1d24b;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.lifeprogression-team-title-new {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #f8f3e0;
}

.team-title-line-1 {
  display: block;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.team-title-line-2 {
  display: block;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

.team-subtitle {
  font-size: 1.2rem;
  color: rgba(248, 243, 224, 0.7);
  max-width: 600px;
  margin: 0 auto;
  animation: fadeIn 1s ease-out 0.6s both;
}

.lifeprogression-team-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.lifeprogression-team-member-new {
  animation: fadeInUp 0.8s ease-out both;
}

.lifeprogression-team-member-new:nth-child(1) {
  animation-delay: 0.2s;
}

.lifeprogression-team-member-new:nth-child(2) {
  animation-delay: 0.4s;
}

.lifeprogression-team-member-new:nth-child(3) {
  animation-delay: 0.6s;
}

.lifeprogression-team-member-new:nth-child(4) {
  animation-delay: 0.8s;
}

.team-member-card {
  background: rgba(248, 243, 224, 0.03);
  border: 1px solid rgba(241, 210, 75, 0.2);
  border-radius: 24px;
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

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

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

.team-member-card:hover {
  background: rgba(248, 243, 224, 0.06);
  border-color: rgba(241, 210, 75, 0.4);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(241, 210, 75, 0.2);
}

.team-member-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
  margin-bottom: 25px;
  border-radius: 20px;
  overflow: hidden;
}

.team-member-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member-card:hover .team-member-img {
  transform: scale(1.1);
}

.team-member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 10, 36, 0.8), rgba(46, 13, 20, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.team-member-card:hover .team-member-overlay {
  opacity: 1;
}

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

.team-social-link {
  width: 45px;
  height: 45px;
  background: rgba(248, 243, 224, 0.2);
  border: 2px solid rgba(241, 210, 75, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f1d24b;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.team-social-link:hover {
  background: #f1d24b;
  color: #3b0a24;
  border-color: #f1d24b;
  transform: translateY(-5px) scale(1.1);
}

.team-member-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(241, 210, 75, 0.2), transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.team-member-card:hover .team-member-glow {
  opacity: 1;
}

.team-member-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.team-member-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f1d24b;
  margin-bottom: 8px;
}

.team-member-role {
  font-size: 1rem;
  color: rgba(248, 243, 224, 0.8);
  margin-bottom: 15px;
  font-weight: 500;
}

.team-member-divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #f1d24b, transparent);
  margin-bottom: 15px;
  transition: width 0.3s ease;
}

.team-member-card:hover .team-member-divider {
  width: 100px;
}

.team-member-bio {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(248, 243, 224, 0.7);
  flex: 1;
}

@media (max-width: 768px) {
  .lifeprogression-team-title-new {
    font-size: 2.5rem;
  }
  
  .lifeprogression-team-grid-new {
    grid-template-columns: 1fr;
  }
  
  .team-member-card {
    padding: 25px;
  }
}

.lifeprogression-contact {
  background: #3b0a24;
  color: #f8f3e0;
  padding: 100px 20px;
}
.lifeprogression-contact-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.lifeprogression-contact-form {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}
.lifeprogression-contact-form input,
.lifeprogression-contact-form textarea {
  padding: 15px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
}
.lifeprogression-contact-form button {
  padding: 15px;
  background: #f1d24b;
  color: #3b0a24;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
.lifeprogression-contact-form button:hover {
  background: #ffe45c;
}

/* ============================================
   NEW ABOUT PAGE STYLES
   ============================================ */

/* About Hero Section */
.lifeprogression-about-hero {
  position: relative;
  background: linear-gradient(180deg, #1a0508 0%, #2e0d14 50%, #1a0508 100%);
  padding: 150px 20px 100px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

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

.about-hero-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(241, 210, 75, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(255, 228, 92, 0.05) 0%, transparent 50%);
  animation: patternMove 30s ease-in-out infinite;
}

.about-hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.about-hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.about-hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(241, 210, 75, 0.1);
  border: 1px solid rgba(241, 210, 75, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #f1d24b;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #f8f3e0;
}

.about-title-line-1,
.about-title-line-2,
.about-title-line-3 {
  display: block;
  animation: slideInUp 0.8s ease-out both;
}

.about-title-line-1 {
  animation-delay: 0.2s;
}

.about-title-line-2 {
  animation-delay: 0.4s;
}

.about-title-line-3 {
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation-delay: 0.6s;
}

.about-hero-description {
  font-size: 1.3rem;
  line-height: 1.8;
  color: rgba(248, 243, 224, 0.8);
  max-width: 800px;
  margin: 0 auto;
  animation: fadeIn 1s ease-out 0.8s both;
}

/* About Main Section */
.lifeprogression-about-new {
  position: relative;
  background: linear-gradient(180deg, #2e0d14 0%, #3b0a24 50%, #2e0d14 100%);
  padding: 120px 20px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

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

.about-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 40%, rgba(241, 210, 75, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 75% 60%, rgba(255, 228, 92, 0.04) 0%, transparent 50%);
  animation: patternMove 35s ease-in-out infinite;
}

.lifeprogression-about-container-new {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lifeprogression-about-visual-new {
  animation: fadeInLeft 0.8s ease-out;
}

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

.about-image-main {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.about-image-main:hover .about-img {
  transform: scale(1.1);
}

.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 10, 36, 0.2), rgba(46, 13, 20, 0.4));
  pointer-events: none;
}

.about-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(241, 210, 75, 0.15), transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  animation: whyGlowPulse 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.lifeprogression-about-content-new {
  animation: fadeInRight 0.8s ease-out 0.4s both;
}

.about-content-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(241, 210, 75, 0.1);
  border: 1px solid rgba(241, 210, 75, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #f1d24b;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-content-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #f1d24b;
  margin-bottom: 25px;
}

.about-content-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(248, 243, 224, 0.8);
  margin-bottom: 40px;
}

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

.about-feature-item-new {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(248, 243, 224, 0.03);
  border: 1px solid rgba(241, 210, 75, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.about-feature-item-new:hover {
  background: rgba(248, 243, 224, 0.06);
  border-color: rgba(241, 210, 75, 0.4);
  transform: translateX(10px);
}

.about-feature-icon-new {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b0a24;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

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

.about-feature-text-new h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f1d24b;
  margin-bottom: 8px;
}

.about-feature-text-new p {
  font-size: 0.95rem;
  color: rgba(248, 243, 224, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* Values Section */
.lifeprogression-values-new {
  position: relative;
  background: linear-gradient(180deg, #1a0508 0%, #2e0d14 50%, #1a0508 100%);
  padding: 120px 20px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

.lifeprogression-values-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.values-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(241, 210, 75, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 228, 92, 0.05) 0%, transparent 50%);
  animation: patternMove 30s ease-in-out infinite;
}

.lifeprogression-values-container-new {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.values-header {
  text-align: center;
  margin-bottom: 80px;
  animation: fadeInUp 0.8s ease-out;
}

.values-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(241, 210, 75, 0.1);
  border: 1px solid rgba(241, 210, 75, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #f1d24b;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.values-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #f8f3e0;
}

.values-title-line-1 {
  display: block;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.values-title-line-2 {
  display: block;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

.values-subtitle {
  font-size: 1.2rem;
  color: rgba(248, 243, 224, 0.7);
  max-width: 600px;
  margin: 0 auto;
  animation: fadeIn 1s ease-out 0.6s both;
}

.lifeprogression-values-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.lifeprogression-value-card-new {
  position: relative;
  height: 100%;
  animation: fadeInUp 0.8s ease-out both;
}

.lifeprogression-value-card-new:nth-child(1) {
  animation-delay: 0.2s;
}

.lifeprogression-value-card-new:nth-child(2) {
  animation-delay: 0.4s;
}

.lifeprogression-value-card-new:nth-child(3) {
  animation-delay: 0.6s;
}

.value-card-inner {
  position: relative;
  z-index: 2;
  background: rgba(248, 243, 224, 0.03);
  border: 1px solid rgba(241, 210, 75, 0.2);
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow: hidden;
}

.lifeprogression-value-card-new:hover .value-card-inner {
  background: rgba(248, 243, 224, 0.06);
  border-color: rgba(241, 210, 75, 0.4);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(241, 210, 75, 0.2);
}

.value-card-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(241, 210, 75, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
  border-radius: 24px;
}

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

.value-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
}

.value-icon {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b0a24;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.value-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(241, 210, 75, 0.3);
  border-radius: 20px;
  filter: blur(20px);
  animation: iconGlow 3s ease-in-out infinite;
}

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

.value-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f1d24b;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.value-description {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(248, 243, 224, 0.8);
  flex: 1;
  position: relative;
  z-index: 2;
}

/* Mission Section */
.lifeprogression-mission-new {
  position: relative;
  background: linear-gradient(180deg, #2e0d14 0%, #3b0a24 50%, #2e0d14 100%);
  padding: 120px 20px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

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

.mission-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 40%, rgba(241, 210, 75, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 60%, rgba(255, 228, 92, 0.06) 0%, transparent 50%);
  animation: patternMove 35s ease-in-out infinite;
}

.lifeprogression-mission-container-new {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.mission-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lifeprogression-mission-text-new {
  animation: fadeInLeft 0.8s ease-out;
}

.mission-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(241, 210, 75, 0.1);
  border: 1px solid rgba(241, 210, 75, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #f1d24b;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.mission-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #f8f3e0;
}

.mission-title-line-1 {
  display: block;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.mission-title-line-2 {
  display: block;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

.mission-description {
  margin-bottom: 40px;
}

.mission-text-main {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(248, 243, 224, 0.9);
  margin-bottom: 20px;
}

.mission-text-secondary {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(248, 243, 224, 0.7);
}

.mission-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  color: #3b0a24;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(241, 210, 75, 0.3);
}

.mission-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(241, 210, 75, 0.4);
  gap: 20px;
}

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

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

.lifeprogression-mission-visual-new {
  animation: fadeInRight 0.8s ease-out 0.4s both;
}

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

.mission-image-main {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.mission-image-main:hover .mission-img {
  transform: scale(1.1);
}

.mission-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 10, 36, 0.2), rgba(46, 13, 20, 0.4));
  pointer-events: none;
}

.mission-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(241, 210, 75, 0.15), transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  animation: whyGlowPulse 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

/* ============================================
   NEW CONTACT PAGE STYLES
   ============================================ */

/* Contact Hero Section */
.lifeprogression-contact-hero {
  position: relative;
  background: linear-gradient(180deg, #1a0508 0%, #2e0d14 50%, #1a0508 100%);
  padding: 150px 20px 100px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

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

.contact-hero-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(241, 210, 75, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(255, 228, 92, 0.05) 0%, transparent 50%);
  animation: patternMove 30s ease-in-out infinite;
}

.contact-hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.contact-hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.contact-hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(241, 210, 75, 0.1);
  border: 1px solid rgba(241, 210, 75, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #f1d24b;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #f8f3e0;
}

.contact-title-line-1,
.contact-title-line-2 {
  display: block;
  animation: slideInUp 0.8s ease-out both;
}

.contact-title-line-1 {
  animation-delay: 0.2s;
}

.contact-title-line-2 {
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation-delay: 0.4s;
}

.contact-hero-description {
  font-size: 1.3rem;
  line-height: 1.8;
  color: rgba(248, 243, 224, 0.8);
  max-width: 800px;
  margin: 0 auto;
  animation: fadeIn 1s ease-out 0.6s both;
}

/* Contact Info Section */
.lifeprogression-contact-info-new {
  position: relative;
  background: linear-gradient(180deg, #2e0d14 0%, #3b0a24 50%, #2e0d14 100%);
  padding: 120px 20px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

.lifeprogression-contact-info-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.contact-info-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 40%, rgba(241, 210, 75, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 75% 60%, rgba(255, 228, 92, 0.04) 0%, transparent 50%);
  animation: patternMove 35s ease-in-out infinite;
}

.lifeprogression-contact-info-container-new {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-info-header {
  text-align: center;
  margin-bottom: 80px;
  animation: fadeInUp 0.8s ease-out;
}

.contact-info-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(241, 210, 75, 0.1);
  border: 1px solid rgba(241, 210, 75, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #f1d24b;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-info-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #f8f3e0;
}

.contact-info-title-line-1 {
  display: block;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.contact-info-title-line-2 {
  display: block;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

.lifeprogression-contact-info-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.lifeprogression-contact-info-card-new {
  position: relative;
  height: 100%;
  animation: fadeInUp 0.8s ease-out both;
}

.lifeprogression-contact-info-card-new:nth-child(1) {
  animation-delay: 0.2s;
}

.lifeprogression-contact-info-card-new:nth-child(2) {
  animation-delay: 0.4s;
}

.lifeprogression-contact-info-card-new:nth-child(3) {
  animation-delay: 0.6s;
}

.contact-info-card-inner {
  position: relative;
  z-index: 2;
  background: rgba(248, 243, 224, 0.03);
  border: 1px solid rgba(241, 210, 75, 0.2);
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow: hidden;
}

.lifeprogression-contact-info-card-new:hover .contact-info-card-inner {
  background: rgba(248, 243, 224, 0.06);
  border-color: rgba(241, 210, 75, 0.4);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(241, 210, 75, 0.2);
}

.contact-info-card-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(241, 210, 75, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
  border-radius: 24px;
}

.lifeprogression-contact-info-card-new:hover .contact-info-card-hover-effect {
  opacity: 1;
}

.contact-info-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
}

.contact-info-icon {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b0a24;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.contact-info-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(241, 210, 75, 0.3);
  border-radius: 50%;
  filter: blur(20px);
  animation: iconGlow 3s ease-in-out infinite;
}

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

.contact-info-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f1d24b;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.contact-info-card-text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(248, 243, 224, 0.8);
  position: relative;
  z-index: 2;
}

/* Contact Form Section */
.lifeprogression-contact-new {
  position: relative;
  background: linear-gradient(180deg, #1a0508 0%, #2e0d14 50%, #1a0508 100%);
  padding: 120px 20px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

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

.contact-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(241, 210, 75, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 228, 92, 0.05) 0%, transparent 50%);
  animation: patternMove 30s ease-in-out infinite;
}

.lifeprogression-contact-container-new {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.contact-form-wrapper {
  animation: fadeInUp 0.8s ease-out;
}

.lifeprogression-contact-form-section {
  background: rgba(248, 243, 224, 0.05);
  border: 1px solid rgba(241, 210, 75, 0.2);
  border-radius: 24px;
  padding: 60px;
}

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

.contact-form-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(241, 210, 75, 0.1);
  border: 1px solid rgba(241, 210, 75, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #f1d24b;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-form-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #f1d24b;
  margin-bottom: 15px;
}

.contact-form-subtitle {
  font-size: 1.1rem;
  color: rgba(248, 243, 224, 0.7);
}

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

.form-group-new,
.form-field-group {
  position: relative;
}

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

.form-input-new,
.form-textarea-new {
  width: 100%;
  padding: 18px 24px;
  background: rgba(248, 243, 224, 0.05);
  border: 2px solid rgba(241, 210, 75, 0.2);
  border-radius: 12px;
  color: #f8f3e0;
  font-size: 1rem;
  font-family: 'PT Sans Narrow', sans-serif;
  transition: all 0.3s ease;
}

.form-input-new:focus,
.form-textarea-new:focus {
  outline: none;
  border-color: rgba(241, 210, 75, 0.5);
  background: rgba(248, 243, 224, 0.08);
}

.form-input-new::placeholder,
.form-textarea-new::placeholder {
  color: rgba(248, 243, 224, 0.5);
}

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

.form-input-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #f1d24b, #ffe45c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 0 0 12px 12px;
  pointer-events: none;
  margin: 0 2px;
}

.form-group-new:focus-within .form-input-glow,
.form-field-group:focus-within .form-input-glow {
  transform: scaleX(1);
}

.contact-form-submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  color: #3b0a24;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(241, 210, 75, 0.3);
  overflow: hidden;
  align-self: flex-start;
}

.contact-form-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(241, 210, 75, 0.4);
  gap: 20px;
}

.contact-form-submit-btn i {
  transition: transform 0.3s ease;
}

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

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

.contact-form-submit-btn:active .btn-ripple-effect {
  width: 300px;
  height: 300px;
}

/* Form validation styles */
.required-star {
  color: #ffe45c;
  margin-left: 4px;
}

.invalid-feedback {
  display: none;
  font-size: 0.85rem;
  color: #ff6b6b;
  margin-top: 8px;
  padding-left: 4px;
}

.form-field-group input:invalid:not(:placeholder-shown) ~ .invalid-feedback,
.form-field-group textarea:invalid:not(:placeholder-shown) ~ .invalid-feedback {
  display: block;
}

.form-field-group input:invalid:not(:placeholder-shown),
.form-field-group textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(255, 107, 107, 0.5);
}

.form-field-group input:valid:not(:placeholder-shown),
.form-field-group textarea:valid:not(:placeholder-shown) {
  border-color: rgba(16, 185, 129, 0.5);
}

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

.form-status .loading,
.form-status .error-message,
.form-status .sent-message {
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
}

.form-status .loading {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.form-status .error-message {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

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

/* Visit Us Section */
.lifeprogression-contact-visit-new {
  position: relative;
  background: linear-gradient(180deg, #2e0d14 0%, #3b0a24 50%, #2e0d14 100%);
  padding: 120px 20px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

.lifeprogression-contact-visit-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.contact-visit-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 40%, rgba(241, 210, 75, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 60%, rgba(255, 228, 92, 0.06) 0%, transparent 50%);
  animation: patternMove 35s ease-in-out infinite;
}

.lifeprogression-contact-visit-container-new {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-visit-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lifeprogression-contact-visit-text-new {
  animation: fadeInLeft 0.8s ease-out;
}

.contact-visit-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(241, 210, 75, 0.1);
  border: 1px solid rgba(241, 210, 75, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #f1d24b;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-visit-title {
  font-size: 3rem;
  font-weight: 900;
  color: #f1d24b;
  margin-bottom: 30px;
}

.contact-visit-description {
  margin-bottom: 40px;
}

.contact-visit-text-main {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(248, 243, 224, 0.9);
  margin-bottom: 20px;
}

.contact-visit-text-secondary {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(248, 243, 224, 0.7);
}

.lifeprogression-contact-visit-visual-new {
  animation: fadeInRight 0.8s ease-out 0.4s both;
}

.contact-visit-image-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
}

.contact-visit-image-main {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.contact-visit-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.contact-visit-image-main:hover .contact-visit-img {
  transform: scale(1.1);
}

.contact-visit-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 10, 36, 0.2), rgba(46, 13, 20, 0.4));
  pointer-events: none;
}

.contact-visit-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(241, 210, 75, 0.15), transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  animation: whyGlowPulse 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

/* ============================================
   NEW FAQ PAGE STYLES
   ============================================ */

/* FAQ Hero Section */
.lifeprogression-faq-hero {
  position: relative;
  background: linear-gradient(180deg, #1a0508 0%, #2e0d14 50%, #1a0508 100%);
  padding: 150px 20px 100px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

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

.faq-hero-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(241, 210, 75, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(255, 228, 92, 0.05) 0%, transparent 50%);
  animation: patternMove 30s ease-in-out infinite;
}

.faq-hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.faq-hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.faq-hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(241, 210, 75, 0.1);
  border: 1px solid rgba(241, 210, 75, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #f1d24b;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.faq-hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #f8f3e0;
}

.faq-title-line-1,
.faq-title-line-2 {
  display: block;
  animation: slideInUp 0.8s ease-out both;
}

.faq-title-line-1 {
  animation-delay: 0.2s;
}

.faq-title-line-2 {
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation-delay: 0.4s;
}

.faq-hero-description {
  font-size: 1.3rem;
  line-height: 1.8;
  color: rgba(248, 243, 224, 0.8);
  max-width: 800px;
  margin: 0 auto;
  animation: fadeIn 1s ease-out 0.6s both;
}

/* FAQ Section */
.lifeprogression-faq-new {
  position: relative;
  background: linear-gradient(180deg, #2e0d14 0%, #3b0a24 50%, #2e0d14 100%);
  padding: 120px 20px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

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

.faq-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(241, 210, 75, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 228, 92, 0.05) 0%, transparent 50%);
  animation: patternMove 30s ease-in-out infinite;
}

.lifeprogression-faq-container-new {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.lifeprogression-faq-list-new {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lifeprogression-faq-item-new {
  background: rgba(248, 243, 224, 0.05);
  border: 1px solid rgba(241, 210, 75, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out both;
}

.lifeprogression-faq-item-new:nth-child(1) { animation-delay: 0.1s; }
.lifeprogression-faq-item-new:nth-child(2) { animation-delay: 0.2s; }
.lifeprogression-faq-item-new:nth-child(3) { animation-delay: 0.3s; }
.lifeprogression-faq-item-new:nth-child(4) { animation-delay: 0.4s; }
.lifeprogression-faq-item-new:nth-child(5) { animation-delay: 0.5s; }
.lifeprogression-faq-item-new:nth-child(6) { animation-delay: 0.6s; }

.lifeprogression-faq-item-new.active {
  background: rgba(248, 243, 224, 0.08);
  border-color: rgba(241, 210, 75, 0.4);
}

.faq-item-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  cursor: pointer;
  position: relative;
}

.faq-item-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: rgba(241, 210, 75, 0.3);
  min-width: 40px;
}

.faq-item-question {
  flex: 1;
  font-size: 1.3rem;
  font-weight: 700;
  color: #f1d24b;
  margin: 0;
}

.faq-item-toggle {
  width: 40px;
  height: 40px;
  background: rgba(241, 210, 75, 0.1);
  border: 2px solid rgba(241, 210, 75, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f1d24b;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item-toggle:hover {
  background: rgba(241, 210, 75, 0.2);
  border-color: rgba(241, 210, 75, 0.5);
  transform: rotate(180deg);
}

.lifeprogression-faq-item-new.active .faq-item-toggle {
  transform: rotate(180deg);
  background: rgba(241, 210, 75, 0.2);
}

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

.lifeprogression-faq-item-new.active .faq-item-answer {
  max-height: 500px;
  padding: 0 30px 30px;
}

.faq-item-answer p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(248, 243, 224, 0.8);
  margin: 0;
}

/* FAQ Contact Section */
.lifeprogression-faq-contact-new {
  position: relative;
  background: linear-gradient(180deg, #1a0508 0%, #2e0d14 50%, #1a0508 100%);
  padding: 120px 20px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

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

.faq-contact-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(241, 210, 75, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(255, 228, 92, 0.05) 0%, transparent 50%);
  animation: patternMove 30s ease-in-out infinite;
}

.lifeprogression-faq-contact-container-new {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.faq-contact-content {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.faq-contact-icon-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
}

.faq-contact-icon {
  position: relative;
  z-index: 2;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b0a24;
  font-size: 3rem;
  transition: all 0.3s ease;
}

.faq-contact-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: rgba(241, 210, 75, 0.3);
  border-radius: 50%;
  filter: blur(30px);
  animation: iconGlow 3s ease-in-out infinite;
}

.faq-contact-title {
  font-size: 3rem;
  font-weight: 900;
  color: #f1d24b;
  margin-bottom: 20px;
}

.faq-contact-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(248, 243, 224, 0.8);
  margin-bottom: 40px;
}

.faq-contact-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  color: #3b0a24;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(241, 210, 75, 0.3);
  overflow: hidden;
}

.faq-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(241, 210, 75, 0.4);
  gap: 20px;
}

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

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .about-content-wrapper,
  .mission-content-wrapper,
  .contact-visit-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .about-hero-title,
  .contact-hero-title,
  .faq-hero-title {
    font-size: 3rem;
  }
  
  .about-image-wrapper,
  .mission-image-wrapper,
  .contact-visit-image-wrapper {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .about-hero-title,
  .contact-hero-title,
  .faq-hero-title {
    font-size: 2.5rem;
  }
  
  .lifeprogression-values-grid-new,
  .lifeprogression-contact-info-grid-new {
    grid-template-columns: 1fr;
  }
  
  .lifeprogression-contact-form-section {
    padding: 40px 30px;
  }
  
  .faq-item-header {
    padding: 20px;
    gap: 15px;
  }
  
  .faq-item-question {
    font-size: 1.1rem;
  }
  
  .faq-item-answer {
    padding: 0 20px;
  }
  
  .lifeprogression-faq-item-new.active .faq-item-answer {
    padding: 0 20px 20px;
  }
}

/* ============================================
   POLICY PAGES STYLES (Cookie, Privacy, Terms)
   ============================================ */

/* Policy Hero Section */
.lifeprogression-policy-hero {
  position: relative;
  background: linear-gradient(180deg, #1a0508 0%, #2e0d14 50%, #1a0508 100%);
  padding: 150px 20px 100px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

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

.policy-hero-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(241, 210, 75, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(255, 228, 92, 0.05) 0%, transparent 50%);
  animation: patternMove 30s ease-in-out infinite;
}

.policy-hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.policy-hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.policy-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(241, 210, 75, 0.1);
  border: 1px solid rgba(241, 210, 75, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #f1d24b;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.policy-hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #f8f3e0;
}

.policy-title-line-1,
.policy-title-line-2 {
  display: block;
  animation: slideInUp 0.8s ease-out both;
}

.policy-title-line-1 {
  animation-delay: 0.2s;
}

.policy-title-line-2 {
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation-delay: 0.4s;
}

.policy-hero-description {
  font-size: 1.3rem;
  line-height: 1.8;
  color: rgba(248, 243, 224, 0.8);
  max-width: 800px;
  margin: 0 auto;
  animation: fadeIn 1s ease-out 0.6s both;
}

/* Policy Content Section */
.lifeprogression-policy-content {
  position: relative;
  background: linear-gradient(180deg, #2e0d14 0%, #3b0a24 50%, #2e0d14 100%);
  padding: 120px 20px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

.lifeprogression-policy-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.policy-content-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 40%, rgba(241, 210, 75, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 75% 60%, rgba(255, 228, 92, 0.04) 0%, transparent 50%);
  animation: patternMove 35s ease-in-out infinite;
}

.lifeprogression-policy-container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.policy-content-wrapper {
  animation: fadeInUp 0.8s ease-out;
}

.policy-intro {
  text-align: center;
  margin-bottom: 60px;
  padding: 40px;
  background: rgba(248, 243, 224, 0.05);
  border: 1px solid rgba(241, 210, 75, 0.2);
  border-radius: 20px;
}

.policy-intro-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(248, 243, 224, 0.9);
  margin: 0;
}

.policy-section {
  margin-bottom: 50px;
  background: rgba(248, 243, 224, 0.03);
  border: 1px solid rgba(241, 210, 75, 0.2);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out both;
}

.policy-section:nth-child(1) { animation-delay: 0.1s; }
.policy-section:nth-child(2) { animation-delay: 0.2s; }
.policy-section:nth-child(3) { animation-delay: 0.3s; }
.policy-section:nth-child(4) { animation-delay: 0.4s; }
.policy-section:nth-child(5) { animation-delay: 0.5s; }
.policy-section:nth-child(6) { animation-delay: 0.6s; }
.policy-section:nth-child(7) { animation-delay: 0.7s; }
.policy-section:nth-child(8) { animation-delay: 0.8s; }

.policy-section:hover {
  background: rgba(248, 243, 224, 0.06);
  border-color: rgba(241, 210, 75, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(241, 210, 75, 0.1);
}

.policy-section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(241, 210, 75, 0.2);
}

.policy-section-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(241, 210, 75, 0.3);
  min-width: 60px;
  line-height: 1;
}

.policy-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #f1d24b;
  margin: 0;
  flex: 1;
}

.policy-section-content {
  color: rgba(248, 243, 224, 0.8);
}

.policy-section-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.policy-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.policy-feature-card {
  background: rgba(248, 243, 224, 0.05);
  border: 1px solid rgba(241, 210, 75, 0.2);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.policy-feature-card:hover {
  background: rgba(248, 243, 224, 0.08);
  border-color: rgba(241, 210, 75, 0.4);
  transform: translateY(-5px);
}

.policy-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b0a24;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

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

.policy-feature-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #f1d24b;
  margin-bottom: 15px;
}

.policy-feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(248, 243, 224, 0.8);
  margin: 0;
}

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

.policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(248, 243, 224, 0.8);
  border-bottom: 1px solid rgba(241, 210, 75, 0.1);
}

.policy-list li:last-child {
  border-bottom: none;
}

.policy-list li i {
  color: #f1d24b;
  font-size: 1.2rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.policy-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  color: #3b0a24;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(241, 210, 75, 0.3);
  margin-top: 20px;
}

.policy-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(241, 210, 75, 0.4);
  gap: 20px;
  color: #3b0a24;
}

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

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

/* ============================================
   THANKS PAGE STYLES
   ============================================ */

.lifeprogression-thanks-hero {
  position: relative;
  background: linear-gradient(180deg, #1a0508 0%, #2e0d14 50%, #1a0508 100%);
  padding: 200px 20px 150px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

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

.thanks-hero-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(241, 210, 75, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(255, 228, 92, 0.05) 0%, transparent 50%);
  animation: patternMove 30s ease-in-out infinite;
}

.thanks-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.thanks-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(241, 210, 75, 0.6);
  border-radius: 50%;
  animation: thanksParticleFloat 15s ease-in-out infinite;
}

.thanks-particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.thanks-particle:nth-child(2) {
  top: 40%;
  left: 80%;
  animation-delay: 2s;
}

.thanks-particle:nth-child(3) {
  top: 60%;
  left: 20%;
  animation-delay: 4s;
}

.thanks-particle:nth-child(4) {
  top: 80%;
  left: 70%;
  animation-delay: 6s;
}

.thanks-particle:nth-child(5) {
  top: 30%;
  left: 50%;
  animation-delay: 8s;
}

@keyframes thanksParticleFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(30px, -30px) scale(1.5);
    opacity: 1;
  }
}

.thanks-hero-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.thanks-content {
  animation: fadeInUp 0.8s ease-out;
}

.thanks-icon-wrapper {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 40px;
}

.thanks-icon {
  position: relative;
  z-index: 2;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b0a24;
  font-size: 5rem;
  animation: thanksIconBounce 2s ease-in-out infinite;
  box-shadow: 0 20px 60px rgba(241, 210, 75, 0.4);
}

@keyframes thanksIconBounce {
  0%, 100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.05) translateY(-10px);
  }
}

.thanks-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background: rgba(241, 210, 75, 0.4);
  border-radius: 50%;
  filter: blur(30px);
  animation: thanksGlowPulse 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes thanksGlowPulse {
  0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.thanks-icon-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border: 2px solid rgba(241, 210, 75, 0.5);
  border-radius: 50%;
  animation: thanksRipple 2s ease-out infinite;
  z-index: 0;
}

@keyframes thanksRipple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

.thanks-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #f8f3e0;
}

.thanks-title-line-1 {
  display: block;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInUp 0.8s ease-out 0.3s both;
}

.thanks-description {
  font-size: 1.4rem;
  line-height: 1.8;
  color: rgba(248, 243, 224, 0.9);
  margin-bottom: 20px;
  animation: fadeIn 1s ease-out 0.5s both;
}

.thanks-subdescription {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(248, 243, 224, 0.7);
  margin-bottom: 50px;
  animation: fadeIn 1s ease-out 0.7s both;
}

.thanks-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.thanks-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.thanks-btn-primary {
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  color: #3b0a24;
  box-shadow: 0 10px 30px rgba(241, 210, 75, 0.3);
}

.thanks-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(241, 210, 75, 0.4);
  gap: 20px;
  color: #3b0a24;
}

.thanks-btn-secondary {
  background: rgba(248, 243, 224, 0.1);
  border: 2px solid rgba(241, 210, 75, 0.5);
  color: #f1d24b;
}

.thanks-btn-secondary:hover {
  background: rgba(248, 243, 224, 0.2);
  border-color: rgba(241, 210, 75, 0.8);
  transform: translateY(-3px);
  gap: 20px;
  color: #f1d24b;
}

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

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

@media (max-width: 768px) {
  .policy-hero-title,
  .thanks-title {
    font-size: 2.5rem;
  }
  
  .policy-section {
    padding: 30px 20px;
  }
  
  .policy-section-title {
    font-size: 1.5rem;
  }
  
  .policy-features-grid {
    grid-template-columns: 1fr;
  }
  
  .thanks-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .thanks-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Pricing Section */
.lifeprogression-pricing {
  position: relative;
  background: linear-gradient(180deg, #1a0508 0%, #2e0d14 50%, #1a0508 100%);
  padding: 120px 20px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

.lifeprogression-pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.pricing-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(241, 210, 75, 0.1);
  border: 1px solid rgba(241, 210, 75, 0.3);
  border-radius: 50px;
  color: #f1d24b;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.pricing-title {
  font-size: 3rem;
  font-weight: 700;
  color: #f8f3e0;
  margin-bottom: 20px;
  line-height: 1.2;
}

.pricing-subtitle {
  font-size: 1.2rem;
  color: rgba(248, 243, 224, 0.7);
  max-width: 700px;
  margin: 0 auto;
}

.pricing-comparison-table {
  margin: 60px 0;
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(77, 26, 26, 0.5);
  border-radius: 16px;
  overflow: hidden;
}

.pricing-table thead {
  background: rgba(241, 210, 75, 0.1);
}

.pricing-table th {
  padding: 20px;
  text-align: left;
  color: #f1d24b;
  font-weight: 700;
  font-size: 1.1rem;
  border-bottom: 2px solid rgba(241, 210, 75, 0.3);
}

.pricing-table th:first-child {
  width: 40%;
}

.pricing-table th:not(:first-child) {
  text-align: center;
  width: 20%;
}

.pricing-table td {
  padding: 18px 20px;
  color: #f8f3e0;
  border-bottom: 1px solid rgba(241, 210, 75, 0.1);
}

.pricing-table td:not(:first-child) {
  text-align: center;
}

.pricing-table tbody tr:hover {
  background: rgba(241, 210, 75, 0.05);
}

.pricing-table .bi-check-circle-fill {
  color: #ffe45c;
  font-size: 1.3rem;
}

.pricing-table .bi-x-circle {
  color: rgba(248, 243, 224, 0.3);
  font-size: 1.3rem;
}

.pricing-row-price {
  background: rgba(241, 210, 75, 0.1);
  font-weight: 700;
}

.pricing-row-price td {
  padding: 25px 20px;
  font-size: 1.2rem;
  color: #f1d24b;
}

.pricing-row-price strong {
  font-size: 1.5rem;
  color: #ffe45c;
}

.price-save {
  display: block;
  font-size: 0.85rem;
  color: #ffe45c;
  font-weight: 400;
  margin-top: 5px;
}

.pricing-cta {
  text-align: center;
  margin-top: 50px;
}

.pricing-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: rgba(241, 210, 75, 0.1);
  border: 1px solid rgba(241, 210, 75, 0.3);
  border-radius: 50px;
  color: #f1d24b;
  font-size: 1rem;
  margin-bottom: 30px;
}

.pricing-guarantee i {
  font-size: 1.2rem;
}

.pricing-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 20px 50px;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  color: #3b0a24;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(241, 210, 75, 0.3);
}

.pricing-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(241, 210, 75, 0.4);
  gap: 20px;
  color: #3b0a24;
}

@media (max-width: 768px) {
  .pricing-title {
    font-size: 2rem;
  }
  
  .pricing-table {
    font-size: 0.9rem;
  }
  
  .pricing-table th,
  .pricing-table td {
    padding: 12px 8px;
  }
  
  .pricing-row-price strong {
    font-size: 1.2rem;
  }
  
  .pricing-btn-primary {
    width: 100%;
    justify-content: center;
  }
}