/********** Template CSS **********/
:root {
    --primary: #c1121f;
    --light: #ff6b6b2b;
    --dark: #8a0d18;
}

.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 ***/
.codercademix-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);
}
.codercademix-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.codercademix-logo {
  color: #f1d24b;
  font-size: 1.8rem;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease, color 0.3s ease;
}
.codercademix-logo:hover {
  transform: scale(1.05);
  color: #ffe45c;
}
.codercademix-navigation {
  display: flex;
  gap: 25px;
  align-items: center;
}
.codercademix-nav-link {
  color: #f8f3e0;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}
.codercademix-nav-link:hover,
.codercademix-nav-link.active {
  color: #ffe45c;
}
.codercademix-nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffe45c;
  transition: width 0.3s ease;
}
.codercademix-nav-link:hover::after,
.codercademix-nav-link.active::after {
  width: 100%;
}

/* Dropdown Styles */
.codercademix-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.codercademix-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}
.codercademix-dropdown-toggle i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}
.codercademix-dropdown.active .codercademix-dropdown-toggle i {
  transform: rotate(180deg);
}
.codercademix-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;
}
.codercademix-dropdown.active .codercademix-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.codercademix-dropdown-item {
  display: block;
  padding: 12px 20px;
  color: #f8f3e0;
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}
.codercademix-dropdown-item:hover {
  background-color: #5d2a2a;
  color: #ffe45c;
  border-left-color: #ffe45c;
  padding-left: 25px;
}

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

@media (max-width: 768px) {
  .codercademix-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;
  }
  .codercademix-navigation.show {
    display: flex;
  }
  .codercademix-menu-toggle {
    display: flex;
  }
  .codercademix-nav-link {
    padding: 12px 0;
    width: 100%;
    justify-content: space-between;
  }
  .codercademix-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .codercademix-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 12px 0;
    position: relative;
  }
  .codercademix-dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(241, 210, 75, 0.2);
  }
  .codercademix-dropdown.active .codercademix-dropdown-toggle {
    color: #ffe45c;
  }
  .codercademix-dropdown.active .codercademix-dropdown-toggle::after {
    background: rgba(241, 210, 75, 0.5);
  }
  .codercademix-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;
  }
  .codercademix-dropdown.active .codercademix-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);
  }
  .codercademix-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;
  }
  .codercademix-dropdown-item::before {
    content: '→';
    color: rgba(241, 210, 75, 0.5);
    transition: all 0.3s ease;
  }
  .codercademix-dropdown-item:last-child {
    border-bottom: none;
  }
  .codercademix-dropdown-item:hover,
  .codercademix-dropdown-item:active {
    padding-left: 25px;
    background-color: rgba(93, 42, 42, 0.5);
    color: #ffe45c;
  }
  .codercademix-dropdown-item:hover::before,
  .codercademix-dropdown-item:active::before {
    color: #ffe45c;
    transform: translateX(5px);
  }
}

/*** Service ***/
/* New Services Section */
.codercademix-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;
}

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

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

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

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

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

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

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

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

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

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

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

.codercademix-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) {
  .codercademix-services-title-new {
    font-size: 2.5rem;
  }
  
  .codercademix-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 */
.codercademix-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/* New Hero Section */
.codercademix-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;
}

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

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

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #ff7a7a;
  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;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.codercademix-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) {
  .codercademix-hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .codercademix-hero-title {
    font-size: 3.5rem;
  }
  
  .codercademix-hero-image-wrapper {
    height: 500px;
  }
}

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

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

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

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

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

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

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

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

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

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

/* New Why Section */
.codercademix-why-new {
  position: relative;
  padding: 120px 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #180b12 0%, #12070d 100%);
}

.codercademix-why-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.why-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(215, 38, 61, 0.08), transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(255, 120, 120, 0.08), transparent 45%);
  animation: patternMove 32s ease-in-out infinite;
}

.why-shapes {
  position: absolute;
  inset: 0;
}

.why-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 38, 61, 0.12), rgba(255, 120, 120, 0.06));
  filter: blur(45px);
}

.why-shape-1 {
  width: 520px;
  height: 520px;
  top: -140px;
  right: -160px;
  animation: whyShapeFloat1 28s ease-in-out infinite;
}

.why-shape-2 {
  width: 420px;
  height: 420px;
  bottom: -120px;
  left: -120px;
  animation: whyShapeFloat2 26s 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);
  }
}

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

.codercademix-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(215, 38, 61, 0.1);
  border: 1px solid rgba(215, 38, 61, 0.35);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--glow);
  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: var(--text);
}

.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, var(--primary), var(--accent));
  -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: var(--text);
  margin-bottom: 20px;
  animation: fadeIn 1s ease-out 0.6s both;
}

.why-text-secondary {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  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: 18px;
  padding: 20px;
  background: var(--card);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 16px;
  transition: all 0.25s ease;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.why-feature-item:hover {
  border-color: var(--glow);
  box-shadow: 0 20px 52px rgba(215, 38, 61, 0.15);
  transform: translateX(10px);
}

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

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

.why-feature-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--glow);
  margin-bottom: 8px;
}

.why-feature-content p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.codercademix-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: 560px;
}

.why-image-main {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 70px 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;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.24), rgba(255, 120, 120, 0.18));
  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(17, 24, 39, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 10;
  animation: whyElementFloat 5s ease-in-out infinite;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.why-floating-element i {
  color: var(--glow);
  font-size: 1.1rem;
}

.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(215, 38, 61, 0.18), 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 */
.codercademix-testimonials-new {
  position: relative;
  padding: 120px 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #12070d 0%, #180b12 100%);
}

.codercademix-testimonials-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.testimonials-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 50%, rgba(215, 38, 61, 0.08), transparent 50%),
    radial-gradient(circle at 82% 45%, rgba(255, 120, 120, 0.08), transparent 45%);
  animation: patternMove 28s ease-in-out infinite;
}

.codercademix-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(215, 38, 61, 0.12);
  border: 1px solid rgba(215, 38, 61, 0.35);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--glow);
  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: var(--text);
}

.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, var(--primary), var(--accent));
  -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.15rem;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
  animation: fadeIn 1s ease-out 0.6s both;
}

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

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

.codercademix-testimonial-new:nth-child(1) { animation-delay: 0.2s; }
.codercademix-testimonial-new:nth-child(2) { animation-delay: 0.4s; }
.codercademix-testimonial-new:nth-child(3) { animation-delay: 0.6s; }

.testimonial-card {
  position: relative;
  background: var(--card);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.32s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow: hidden;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.35);
}

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

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

.testimonial-card:hover {
  border-color: var(--glow);
  transform: translateY(-8px);
  box-shadow: 0 22px 70px rgba(215, 38, 61, 0.2);
}

.testimonial-quote-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #12070d;
  font-size: 2rem;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  animation: quoteIconPulse 3s ease-in-out infinite;
  box-shadow: 0 14px 36px rgba(215, 38, 61, 0.25);
}

@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.05rem;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  margin: 0;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: -15px;
  font-size: 4rem;
  color: rgba(255, 120, 120, 0.22);
  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(148, 163, 184, 0.25);
  position: relative;
  z-index: 2;
}

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

.testimonial-author-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--glow);
  margin: 0 0 5px 0;
}

.testimonial-author-role {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

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

.testimonial-rating i {
  color: var(--accent);
  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(215, 38, 61, 0.16), 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;
  }
  
  .codercademix-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 */
.codercademix-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;
}

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

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

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

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

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

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

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

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

.codercademix-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) {
  .codercademix-team-title-new {
    font-size: 2.5rem;
  }
  
  .codercademix-team-grid-new {
    grid-template-columns: 1fr;
  }
  
  .team-member-card {
    padding: 25px;
  }
}

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

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

/* About Hero Section */
.codercademix-about-hero {
  position: relative;
  padding: 140px 20px 120px;
  background: radial-gradient(circle at 20% 10%, rgba(215, 38, 61, 0.12), transparent 30%),
              radial-gradient(circle at 80% 0%, rgba(255, 120, 120, 0.12), transparent 28%),
              linear-gradient(180deg, #180b12 0%, #12070d 100%);
  color: var(--text);
  overflow: hidden;
}

.about-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 20% 20%, rgba(215, 38, 61, 0.08), transparent),
              radial-gradient(140% 140% at 80% -10%, rgba(255, 120, 120, 0.12), transparent);
}

.about-hero-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px),
                    linear-gradient(60deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.35;
}

.about-hero-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.about-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(45px);
  opacity: 0.55;
}

.orb-1 {
  width: 360px;
  height: 360px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(215, 38, 61, 0.4), transparent 65%);
}

.orb-2 {
  width: 300px;
  height: 300px;
  bottom: -120px;
  left: -60px;
  background: radial-gradient(circle, rgba(255, 120, 120, 0.35), transparent 70%);
}

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

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.about-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(215, 38, 61, 0.12);
  border: 1px solid rgba(215, 38, 61, 0.35);
  border-radius: 999px;
  color: var(--glow);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
}

.about-hero-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 0;
  color: var(--text);
}

.about-hero-title span {
  display: block;
}

.about-hero-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 720px;
}

.about-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-hero-pill {
  padding: 10px 14px;
  background: rgba(17, 24, 39, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: var(--text);
  border-radius: 12px;
  font-size: 0.95rem;
}

.about-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.about-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.about-hero-btn-primary {
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: #12070d;
  box-shadow: 0 14px 36px rgba(215, 38, 61, 0.28);
}

.about-hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(215, 38, 61, 0.32);
}

.about-hero-btn-ghost {
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.about-hero-btn-ghost:hover {
  border-color: var(--glow);
  color: #ffffff;
}

.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.about-stat-card {
  background: var(--card);
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
}

.about-stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--glow);
  margin-bottom: 4px;
}

.about-stat-label {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.about-hero-visual {
  position: relative;
}

.about-hero-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(17, 24, 39, 0.7);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
}

.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.22), rgba(255, 120, 120, 0.18));
}

.about-hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(215, 38, 61, 0.35), transparent 45%),
              radial-gradient(circle at 80% 70%, rgba(255, 120, 120, 0.35), transparent 50%);
  mix-blend-mode: screen;
}

.about-hero-float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(17, 24, 39, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.about-hero-float i {
  color: var(--glow);
  font-size: 1.1rem;
}

.about-hero-float.card-primary {
  top: 14px;
  right: -10px;
}

.about-hero-float.card-secondary {
  bottom: 18px;
  left: -4px;
}

/* About Main Section */
.codercademix-about-new {
  position: relative;
  padding: 110px 20px;
  background: linear-gradient(180deg, #12070d 0%, #180b12 100%);
  color: var(--text);
}

.codercademix-about-shell {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.about-section-badge {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(215, 38, 61, 0.12);
  border: 1px solid rgba(215, 38, 61, 0.35);
  color: var(--glow);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-section-title {
  margin: 16px 0 10px;
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 900;
}

.about-section-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-body-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}

.about-narrative {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-checklist {
  display: grid;
  gap: 16px;
}

.about-check-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(17, 24, 39, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.28);
}

.about-check-item i {
  color: var(--glow);
  font-size: 1.2rem;
  margin-top: 4px;
}

.about-check-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.about-check-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.about-steps {
  display: grid;
  gap: 14px;
}

.about-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.about-step-number {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: #12070d;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.95rem;
}

.about-step h4 {
  margin: 0 0 4px;
  color: var(--text);
}

.about-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.about-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.about-feature-card {
  background: var(--card);
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.32);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--glow);
  box-shadow: 0 22px 60px rgba(215, 38, 61, 0.2);
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: #12070d;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.about-feature-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.about-feature-tag {
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.28);
  color: var(--muted);
  font-size: 0.85rem;
}

.about-feature-card h3 {
  margin: 0 0 8px;
  color: var(--text);
}

.about-feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Values Section */
.codercademix-values-new {
  position: relative;
  padding: 110px 20px;
  background: radial-gradient(circle at 15% 20%, rgba(215, 38, 61, 0.08), transparent 35%),
              radial-gradient(circle at 85% 10%, rgba(255, 120, 120, 0.08), transparent 32%),
              linear-gradient(180deg, #180b12 0%, #12070d 100%);
  color: var(--text);
  overflow: hidden;
}

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

.values-header {
  text-align: center;
  margin-bottom: 70px;
}

.values-badge {
  display: inline-flex;
  padding: 8px 14px;
  background: rgba(215, 38, 61, 0.12);
  border: 1px solid rgba(215, 38, 61, 0.35);
  color: var(--glow);
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}

.values-title {
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 900;
  margin: 16px 0 10px;
  color: var(--text);
}

.values-title-line-2 {
  display: block;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.values-subtitle {
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

.codercademix-values-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.value-card-inner {
  background: var(--card);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.codercademix-value-card-new:hover .value-card-inner {
  transform: translateY(-6px);
  border-color: var(--glow);
  box-shadow: 0 24px 70px rgba(215, 38, 61, 0.22);
}

.value-icon-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: #12070d;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  box-shadow: 0 12px 32px rgba(215, 38, 61, 0.25);
}

.value-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
}

.value-description {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

/* Mission Section */
.codercademix-mission-new {
  position: relative;
  padding: 110px 20px 120px;
  background: linear-gradient(180deg, #12070d 0%, #180b12 100%);
  color: var(--text);
}

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

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

.mission-badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 120, 120, 0.12);
  border: 1px solid rgba(255, 120, 120, 0.35);
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}

.mission-title {
  margin: 16px 0 12px;
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 900;
}

.mission-title-line-2 {
  display: block;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mission-description {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.mission-points {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.mission-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(17, 24, 39, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 12px;
}

.mission-point i {
  color: var(--glow);
  font-size: 1.1rem;
  margin-top: 2px;
}

.mission-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 12px;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: #12070d;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 16px 40px rgba(215, 38, 61, 0.25);
}

.mission-cta-btn:hover {
  transform: translateY(-2px);
}

.codercademix-mission-visual-new {
  position: relative;
}

.mission-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(17, 24, 39, 0.7);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
  min-height: 420px;
}

.mission-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mission-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.22), rgba(255, 120, 120, 0.18));
}

.mission-image-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(215, 38, 61, 0.35), transparent 45%),
              radial-gradient(circle at 80% 70%, rgba(255, 120, 120, 0.35), transparent 50%);
  mix-blend-mode: screen;
}

@media (max-width: 991.98px) {
  .about-hero-grid,
  .about-body-grid,
  .mission-content-wrapper {
    grid-template-columns: 1fr;
  }

  .about-hero-visual {
    order: -1;
  }

  .about-hero-stats {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .about-feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

@media (max-width: 767.98px) {
  .codercademix-about-hero,
  .codercademix-about-new,
  .codercademix-values-new,
  .codercademix-mission-new {
    padding: 80px 18px;
  }

  .about-hero-title {
    font-size: 2.2rem;
  }

  .about-hero-actions {
    width: 100%;
  }

  .about-hero-btn {
    justify-content: center;
    width: 100%;
  }

  .about-feature-card {
    padding: 16px;
  }
}

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

/* Contact Hero Section */
.codercademix-contact-hero {
  position: relative;
  padding: 140px 20px 120px;
  background: radial-gradient(circle at 20% 10%, rgba(215, 38, 61, 0.12), transparent 30%),
              radial-gradient(circle at 80% 0%, rgba(255, 120, 120, 0.12), transparent 28%),
              linear-gradient(180deg, #180b12 0%, #12070d 100%);
  color: var(--text);
  overflow: hidden;
}

.contact-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 20% 20%, rgba(215, 38, 61, 0.08), transparent),
              radial-gradient(140% 140% at 80% -10%, rgba(255, 120, 120, 0.12), transparent);
}

.contact-hero-gridlines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px),
                    linear-gradient(60deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.3;
}

.contact-hero-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.contact-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(45px);
  opacity: 0.55;
}

.orb-1 {
  width: 360px;
  height: 360px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(215, 38, 61, 0.4), transparent 65%);
}

.orb-2 {
  width: 300px;
  height: 300px;
  bottom: -120px;
  left: -60px;
  background: radial-gradient(circle, rgba(255, 120, 120, 0.35), transparent 70%);
}

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

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.contact-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(215, 38, 61, 0.12);
  border: 1px solid rgba(215, 38, 61, 0.35);
  border-radius: 999px;
  color: var(--glow);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
}

.contact-hero-title {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 0;
  color: var(--text);
}

.contact-hero-title span {
  display: block;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 720px;
}

.contact-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-hero-pill {
  padding: 10px 14px;
  background: rgba(17, 24, 39, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: var(--text);
  border-radius: 12px;
  font-size: 0.95rem;
}

.contact-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.contact-hero-btn-primary {
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: #12070d;
  box-shadow: 0 14px 36px rgba(215, 38, 61, 0.28);
}

.contact-hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(215, 38, 61, 0.32);
}

.contact-hero-btn-ghost {
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.contact-hero-btn-ghost:hover {
  border-color: var(--glow);
  color: #ffffff;
}

.contact-hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
}

.contact-stat-card {
  background: var(--card);
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
}

.contact-stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--glow);
  margin-bottom: 4px;
}

.contact-stat-label {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-hero-visual {
  position: relative;
}

.contact-hero-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(17, 24, 39, 0.7);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
}

.contact-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.22), rgba(255, 120, 120, 0.18));
}

.contact-hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(215, 38, 61, 0.35), transparent 45%),
              radial-gradient(circle at 80% 70%, rgba(255, 120, 120, 0.35), transparent 50%);
  mix-blend-mode: screen;
}

.contact-hero-float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(17, 24, 39, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.contact-hero-float i {
  color: var(--glow);
  font-size: 1.1rem;
}

.contact-hero-float.card-primary {
  top: 12px;
  right: -12px;
}

.contact-hero-float.card-secondary {
  bottom: 18px;
  left: -6px;
}

/* Contact Info Section */
.codercademix-contact-info-new {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(180deg, #12070d 0%, #180b12 100%);
  color: var(--text);
}

.contact-info-shell {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.contact-info-badge {
  display: inline-flex;
  padding: 8px 14px;
  background: rgba(215, 38, 61, 0.12);
  border: 1px solid rgba(215, 38, 61, 0.35);
  color: var(--glow);
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}

.contact-info-title {
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  font-weight: 900;
  margin: 16px 0 8px;
}

.contact-info-subtitle {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.codercademix-contact-info-card-new {
  background: var(--card);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.32);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.codercademix-contact-info-card-new:hover {
  transform: translateY(-4px);
  border-color: var(--glow);
  box-shadow: 0 22px 60px rgba(215, 38, 61, 0.2);
}

.contact-info-card-inner {
  display: grid;
  gap: 8px;
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: #12070d;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}

.contact-info-card-inner h3 {
  margin: 4px 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
}

.contact-info-card-inner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.contact-info-card-inner .muted {
  color: var(--muted);
}

.contact-info-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: var(--glow);
  font-weight: 700;
  text-decoration: none;
}

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

/* Contact Form Section */
.codercademix-contact-new {
  position: relative;
  padding: 110px 20px;
  background: linear-gradient(180deg, #12070d 0%, #180b12 100%);
  color: var(--text);
}

.codercademix-contact-shell {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: start;
}

.contact-aside {
  background: var(--card);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.32);
}

.contact-aside-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(215, 38, 61, 0.12);
  border: 1px solid rgba(215, 38, 61, 0.35);
  color: var(--glow);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-aside-title {
  margin: 14px 0 8px;
  font-size: 1.8rem;
  font-weight: 900;
}

.contact-aside-text {
  color: var(--muted);
  line-height: 1.6;
}

.contact-aside-list {
  display: grid;
  gap: 10px;
  margin: 14px 0;
}

.contact-aside-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.contact-aside-item i {
  color: var(--glow);
}

.contact-aside-note {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  background: rgba(215, 38, 61, 0.08);
  border: 1px solid rgba(215, 38, 61, 0.25);
  border-radius: 12px;
  color: var(--text);
  font-weight: 600;
}

.contact-form-card {
  background: var(--card);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.contact-form-header {
  margin-bottom: 24px;
}

.contact-form-badge {
  display: inline-flex;
  padding: 8px 14px;
  background: rgba(215, 38, 61, 0.12);
  border: 1px solid rgba(215, 38, 61, 0.35);
  border-radius: 999px;
  color: var(--glow);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-form-title {
  font-size: 2rem;
  font-weight: 900;
  margin: 14px 0 6px;
}

.contact-form-subtitle {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.contact-form-new {
  display: grid;
  gap: 18px;
}

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

.form-label-new {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.form-input-new,
.form-textarea-new {
  width: 100%;
  padding: 16px 18px;
  background: rgba(17, 24, 39, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 12px;
  color: var(--text);
  font-size: 1rem;
  font-family: 'Sanchez', serif;
  transition: all 0.25s ease;
}

.form-input-new:focus,
.form-textarea-new:focus {
  outline: none;
  border-color: var(--glow);
  box-shadow: 0 0 0 3px rgba(215, 38, 61, 0.25);
}

.form-input-new::placeholder,
.form-textarea-new::placeholder {
  color: rgba(226, 232, 240, 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, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  border-radius: 0 0 12px 12px;
  pointer-events: none;
}

.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: 12px;
  padding: 16px 20px;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: #12070d;
  border: none;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 16px 40px rgba(215, 38, 61, 0.25);
  overflow: hidden;
  align-self: flex-start;
}

.contact-form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(215, 38, 61, 0.32);
}

.contact-form-submit-btn i {
  transition: transform 0.25s 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: 260px;
  height: 260px;
}

.required-star {
  color: var(--accent);
  margin-left: 4px;
}

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

.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: 10px;
}

.form-status .loading,
.form-status .error-message,
.form-status .sent-message {
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.form-status .loading {
  color: #3b82f6;
}

.form-status .error-message {
  color: #ef4444;
}

.form-status .sent-message {
  color: #10b981;
}

/* Visit Us Section */
.codercademix-contact-visit-new {
  position: relative;
  padding: 110px 20px;
  background: linear-gradient(180deg, #180b12 0%, #12070d 100%);
  color: var(--text);
}

.contact-visit-shell {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-visit-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.contact-visit-badge {
  display: inline-flex;
  padding: 8px 14px;
  background: rgba(215, 38, 61, 0.12);
  border: 1px solid rgba(215, 38, 61, 0.35);
  border-radius: 999px;
  color: var(--glow);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}

.contact-visit-title {
  margin: 16px 0 10px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
}

.contact-visit-text-main {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 14px;
}

.contact-visit-list {
  display: grid;
  gap: 10px;
  margin: 12px 0 18px;
}

.contact-visit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.contact-visit-item i {
  color: var(--glow);
}

.contact-visit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 12px;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: #12070d;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(215, 38, 61, 0.25);
}

.contact-visit-btn:hover {
  transform: translateY(-2px);
}

.contact-visit-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(17, 24, 39, 0.7);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
}

.contact-visit-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.22), rgba(255, 120, 120, 0.18));
}

.contact-visit-image-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(215, 38, 61, 0.35), transparent 45%),
              radial-gradient(circle at 80% 70%, rgba(255, 120, 120, 0.35), transparent 50%);
  mix-blend-mode: screen;
}

@media (max-width: 991.98px) {
  .contact-hero-grid,
  .contact-grid,
  .contact-visit-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero-visual {
    order: -1;
  }
}

@media (max-width: 767.98px) {
  .codercademix-contact-hero,
  .codercademix-contact-info-new,
  .codercademix-contact-new,
  .codercademix-contact-visit-new {
    padding: 80px 18px;
  }

  .contact-hero-title {
    font-size: 2.2rem;
  }

  .contact-hero-actions {
    width: 100%;
  }

  .contact-hero-btn {
    width: 100%;
    justify-content: center;
  }

  .contact-form-card {
    padding: 20px;
  }
}

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

/* FAQ Hero Section */
.codercademix-faq-hero {
  position: relative;
  padding: 140px 20px 120px;
  background: radial-gradient(circle at 20% 10%, rgba(215, 38, 61, 0.12), transparent 30%),
              radial-gradient(circle at 80% 0%, rgba(255, 120, 120, 0.12), transparent 28%),
              linear-gradient(180deg, #180b12 0%, #12070d 100%);
  color: var(--text);
  overflow: hidden;
}

.faq-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.faq-hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 20% 20%, rgba(215, 38, 61, 0.08), transparent),
              radial-gradient(140% 140% at 80% -10%, rgba(255, 120, 120, 0.12), transparent);
}

.faq-hero-gridlines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px),
                    linear-gradient(60deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.3;
}

.faq-hero-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.faq-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(45px);
  opacity: 0.55;
}

.orb-1 {
  width: 360px;
  height: 360px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(215, 38, 61, 0.4), transparent 65%);
}

.orb-2 {
  width: 300px;
  height: 300px;
  bottom: -120px;
  left: -60px;
  background: radial-gradient(circle, rgba(255, 120, 120, 0.35), transparent 70%);
}

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

.faq-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.faq-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(215, 38, 61, 0.12);
  border: 1px solid rgba(215, 38, 61, 0.35);
  border-radius: 999px;
  color: var(--glow);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
}

.faq-hero-title {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 0;
  color: var(--text);
}

.faq-hero-title span {
  display: block;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-hero-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 720px;
}

.faq-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-hero-pill {
  padding: 10px 14px;
  background: rgba(17, 24, 39, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: var(--text);
  border-radius: 12px;
  font-size: 0.95rem;
}

.faq-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.faq-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.faq-hero-btn-primary {
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: #12070d;
  box-shadow: 0 14px 36px rgba(215, 38, 61, 0.28);
}

.faq-hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(215, 38, 61, 0.32);
}

.faq-hero-btn-ghost {
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.faq-hero-btn-ghost:hover {
  border-color: var(--glow);
  color: #ffffff;
}

.faq-hero-visual {
  position: relative;
}

.faq-hero-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(17, 24, 39, 0.7);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
}

.faq-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.faq-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.22), rgba(255, 120, 120, 0.18));
}

.faq-hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(215, 38, 61, 0.35), transparent 45%),
              radial-gradient(circle at 80% 70%, rgba(255, 120, 120, 0.35), transparent 50%);
  mix-blend-mode: screen;
}

.faq-hero-float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(17, 24, 39, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.faq-hero-float i {
  color: var(--glow);
  font-size: 1.1rem;
}

.faq-hero-float.card-primary {
  top: 14px;
  right: -12px;
}

.faq-hero-float.card-secondary {
  bottom: 18px;
  left: -6px;
}

/* FAQ Section */
.codercademix-faq-new {
  position: relative;
  padding: 110px 20px;
  background: linear-gradient(180deg, #12070d 0%, #180b12 100%);
  color: var(--text);
}

.faq-shell {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.faq-badge {
  display: inline-flex;
  padding: 8px 14px;
  background: rgba(215, 38, 61, 0.12);
  border: 1px solid rgba(215, 38, 61, 0.35);
  color: var(--glow);
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}

.faq-title {
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 900;
  margin: 16px 0 8px;
}

.faq-subtitle {
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 20px;
  align-items: start;
}

.codercademix-faq-list-new {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.codercademix-faq-item-new {
  background: var(--card);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.35);
}

.codercademix-faq-item-new.active {
  border-color: var(--glow);
  box-shadow: 0 20px 60px rgba(215, 38, 61, 0.2);
}

.faq-item-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 18px 18px;
  cursor: pointer;
}

.faq-item-number {
  font-size: 1rem;
  font-weight: 800;
  color: var(--glow);
  background: rgba(215, 38, 61, 0.12);
  border: 1px solid rgba(215, 38, 61, 0.25);
  padding: 8px 10px;
  border-radius: 10px;
}

.faq-item-question {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}

.faq-item-toggle {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--text);
  cursor: pointer;
  transition: all 0.25s ease;
}

.faq-item-toggle:hover {
  border-color: var(--glow);
  color: #ffffff;
}

.codercademix-faq-item-new.active .faq-item-toggle {
  transform: rotate(180deg);
  background: rgba(215, 38, 61, 0.12);
  border-color: var(--glow);
}

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

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

.faq-item-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.faq-aside-card {
  background: var(--card);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.35);
  display: grid;
  gap: 10px;
}

.faq-aside-badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 120, 120, 0.12);
  border: 1px solid rgba(255, 120, 120, 0.35);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.faq-aside-title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 900;
}

.faq-aside-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.faq-aside-list {
  display: grid;
  gap: 8px;
}

.faq-aside-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

.faq-aside-item i {
  color: var(--glow);
}

.faq-aside-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: #12070d;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(215, 38, 61, 0.25);
}

.faq-aside-btn:hover {
  transform: translateY(-2px);
}

/* FAQ Contact Section */
.codercademix-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;
}

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

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

/* FAQ Contact Section (new layout overrides) */
.codercademix-faq-contact-new {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(180deg, #12070d 0%, #180b12 100%);
  color: var(--text);
}

.faq-contact-shell {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-contact-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  background: var(--card);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.faq-contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: #12070d;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  box-shadow: 0 12px 32px rgba(215, 38, 61, 0.25);
}

.faq-contact-content h2 {
  margin: 0 0 6px;
  font-size: 1.4rem;
  font-weight: 900;
}

.faq-contact-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.faq-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: #12070d;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(215, 38, 61, 0.25);
}

.faq-contact-btn:hover {
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .about-content-wrapper,
  .mission-content-wrapper,
  .contact-visit-wrapper,
  .faq-layout {
    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;
  }

  .faq-contact-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .about-hero-title,
  .contact-hero-title,
  .faq-hero-title {
    font-size: 2.5rem;
  }
  
  .codercademix-values-grid-new,
  .codercademix-contact-info-grid-new {
    grid-template-columns: 1fr;
  }
  
  .codercademix-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;
  }
  
  .codercademix-faq-item-new.active .faq-item-answer {
    padding: 0 20px 20px;
  }

  .faq-contact-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .faq-contact-btn {
    justify-content: center;
    width: 100%;
  }
}

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

/* Policy Hero Section */
.codercademix-policy-hero {
  position: relative;
  padding: 160px 20px 120px;
  background: radial-gradient(circle at 20% 20%, rgba(215, 38, 61, 0.08), transparent 40%),
              radial-gradient(circle at 80% 0%, rgba(236, 72, 153, 0.08), transparent 35%),
              #12070d;
  overflow: hidden;
}

.policy-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.policy-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(215, 38, 61, 0.15), rgba(236, 72, 153, 0.15));
  filter: blur(80px);
}

.policy-hero-gridlines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.6;
}

.policy-hero-orbs .policy-orb {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.4;
}

.policy-hero-orbs .orb-1 {
  background: var(--primary);
  top: 20%;
  left: 5%;
}

.policy-hero-orbs .orb-2 {
  background: var(--accent);
  bottom: 10%;
  right: 10%;
}

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

.policy-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
  align-items: center;
}

.policy-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.policy-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
}

.policy-hero-title {
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  line-height: 1.15;
  color: var(--text);
  font-weight: 900;
}

.policy-hero-title span {
  display: block;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.policy-hero-lead {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 560px;
}

.policy-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.policy-hero-pill {
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 600;
}

.policy-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.policy-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s ease;
}

.policy-hero-btn-primary {
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: #12070d;
  box-shadow: 0 16px 40px rgba(215, 38, 61, 0.25);
}

.policy-hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(236, 72, 153, 0.25);
}

.policy-hero-btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.policy-hero-btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.policy-hero-visual {
  position: relative;
}

.policy-hero-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.policy-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.policy-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 16, 32, 0), rgba(11, 16, 32, 0.8));
}

.policy-hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: 0 0 120px rgba(215, 38, 61, 0.3);
}

.policy-hero-float {
  position: absolute;
  right: 10%;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  background: rgba(11, 16, 32, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.policy-hero-float.card-primary {
  top: 10%;
}

.policy-hero-float.card-secondary {
  bottom: 8%;
}

.policy-hero-float i {
  font-size: 1.4rem;
  color: var(--primary);
}

.policy-hero-float strong {
  display: block;
}

.policy-hero-float span {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Policy Content Section */
.codercademix-policy-content {
  background: linear-gradient(180deg, #12070d 0%, #180b12 100%);
  padding: 110px 20px;
}

.policy-shell {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.policy-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.policy-badge {
  padding: 8px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.policy-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--text);
  font-weight: 900;
  margin: 0;
}

.policy-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

.policy-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.policy-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.policy-card:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 38, 61, 0.4);
  box-shadow: 0 30px 80px rgba(215, 38, 61, 0.12);
}

.policy-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.policy-card-num {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(215, 38, 61, 0.1);
  border: 1px solid rgba(215, 38, 61, 0.3);
  color: var(--primary);
  font-weight: 900;
  display: grid;
  place-items: center;
}

.policy-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 800;
}

.policy-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.policy-list li i {
  color: var(--primary);
  margin-top: 3px;
}

.policy-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(215, 38, 61, 0.08), rgba(236, 72, 153, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

.policy-cta-text h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 800;
}

.policy-cta-text p {
  margin: 6px 0 0;
  color: var(--muted);
}

.policy-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: #12070d;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(215, 38, 61, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.policy-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(236, 72, 153, 0.25);
}

@media (max-width: 1024px) {
  .policy-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .codercademix-policy-hero {
    padding: 130px 20px 90px;
  }

  .policy-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

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

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

/* === Codercademix Theme Refresh 2025 (Red palette) === */
:root {
  --primary: #d7263d;
  --primary-strong: #b41d32;
  --accent: #ff6b6b;
  --glow: #ff3b30;
  --bg: #12070d;
  --surface: #180b12;
  --card: #1f0f17;
  --muted: #d8c7cb;
  --text: #f6e9ed;
  --footer-wave: #1a0d14;
}

body,
body * {
  font-family: 'Sanchez', serif !important;
}

body {
  background-color: var(--bg);
  color: var(--text);
}

::selection {
  background: rgba(215, 38, 61, 0.3);
  color: #e2e8f0;
}

a {
  color: var(--glow);
  transition: color 0.25s ease, opacity 0.25s ease;
}

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

.codercademix-header {
  background: rgba(15, 23, 42, 0.92);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.codercademix-logo {
  color: #e2e8f0;
}

.codercademix-nav-link {
  color: #cbd5e1;
}

.codercademix-nav-link:hover,
.codercademix-nav-link.active {
  color: #ffffff;
}

.codercademix-dropdown-menu {
  background: rgba(32, 9, 15, 0.95);
  border: 1px solid rgba(255, 120, 120, 0.3);
}

.codercademix-dropdown-item:hover {
  background: rgba(215, 38, 61, 0.12);
  color: #ffffff;
  border-left-color: var(--glow);
}

.codercademix-hero-new,
.codercademix-services-new,
.codercademix-about-hero,
.codercademix-about-new,
.codercademix-values-new,
.codercademix-mission-new,
.codercademix-pricing,
.codercademix-team-new,
.codercademix-why-new,
.codercademix-testimonials-new,
.codercademix-faq-new,
.codercademix-faq-hero,
.codercademix-faq-contact-new,
.codercademix-contact-new,
.codercademix-contact-info-new,
.codercademix-contact-visit-new,
.codercademix-policy-hero,
.codercademix-policy-content,
.codercademix-thanks-hero {
  background: radial-gradient(circle at 20% 20%, rgba(215, 38, 61, 0.06), transparent 35%),
              radial-gradient(circle at 80% 0%, rgba(255, 120, 120, 0.08), transparent 30%),
              linear-gradient(180deg, #12070d 0%, #180b12 100%);
  color: var(--text);
}

.codercademix-hero-title .title-highlight,
.pricing-title,
.why-title,
.team-title-line-2,
.faq-hero-title,
.policy-hero-title,
.thanks-title-line-1 {
  background: linear-gradient(120deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.codercademix-stat-card,
.service-card-inner,
.team-member-card,
.testimonial-card,
.faq-item-answer,
.contact-info-card-inner,
.policy-feature-card,
.policy-section,
.value-card-inner,
.mission-image-main,
.why-image-main,
.pricing-table,
.codercademix-footer-column,
.codercademix-cookie-container {
  background: var(--card);
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  color: var(--text);
}

.pricing-table thead {
  background: rgba(215, 38, 61, 0.08);
}

.pricing-table th,
.pricing-table td {
  color: var(--text);
}

.pricing-row-price td,
.pricing-row-price strong {
  color: var(--glow);
}

.pricing-table .bi-check-circle-fill {
  color: var(--glow);
}

.pricing-table .bi-dash-circle {
  color: rgba(148, 163, 184, 0.7);
}

.codercademix-footer-new {
  background: linear-gradient(180deg, #180b12 0%, #12070d 100%);
  color: var(--text);
}

.codercademix-footer-heading {
  color: #e2e8f0;
}

.codercademix-footer-nav-link,
.codercademix-footer-description {
  color: var(--text);
}

.codercademix-footer-nav-link:hover {
  color: var(--glow);
}

svg.codercademix-wave path {
  fill: var(--footer-wave) !important;
}

.codercademix-cookie-banner {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.codercademix-cookie-btn,
.codercademix-hero-btn-primary,
.pricing-btn-primary,
.contact-form-submit-btn,
.thanks-btn-primary,
.faq-contact-btn,
.mission-cta-btn,
.codercademix-cookie-accept,
.codercademix-hero-btn-secondary {
  background: linear-gradient(120deg, var(--primary) 0%, var(--accent) 100%);
  color: #12070d !important;
  border: none;
  box-shadow: 0 16px 40px rgba(215, 38, 61, 0.25);
}

.codercademix-hero-btn-secondary,
.thanks-btn-secondary {
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: var(--text) !important;
}

.codercademix-hero-btn-secondary:hover,
.thanks-btn-secondary:hover {
  border-color: var(--glow);
  color: #ffffff !important;
}

.contact-form-new .form-input-new,
.contact-form-new .form-textarea-new {
  background: rgba(17, 24, 39, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: var(--text);
}

.contact-form-new .form-input-new:focus,
.contact-form-new .form-textarea-new:focus {
  border-color: var(--glow);
  box-shadow: 0 0 0 3px rgba(215, 38, 61, 0.25);
}

.codercademix-contact-info-card-new,
.codercademix-faq-item-new,
.codercademix-value-card-new,
.codercademix-service-card-new {
  color: var(--text);
}

.codercademix-hero-description,
.services-subtitle,
.pricing-subtitle,
.team-subtitle,
.why-text-main,
.why-text-secondary,
.testimonials-subtitle,
.faq-hero-description,
.policy-hero-description,
.policy-intro-text,
.thanks-description,
.thanks-subdescription {
  color: #cbd5e1;
}

.back-to-top,
.codercademix-scroll-top-btn {
  background: linear-gradient(140deg, var(--accent), var(--primary));
  color: #12070d;
  border: none;
  box-shadow: 0 12px 32px rgba(215, 38, 61, 0.3);
}

/* === CMX Header & Footer === */
.cmx-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(24, 7, 14, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 120, 120, 0.25);
}

.cmx-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cmx-logo {
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  font-size: 1.4rem;
}

.cmx-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cmx-nav-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  position: relative;
  padding: 10px 6px;
}

.cmx-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  opacity: 0.8;
}

.cmx-nav-link:hover,
.cmx-nav-link.active {
  color: var(--text);
}

.cmx-nav-link:hover::after,
.cmx-nav-link.active::after {
  transform: scaleX(1);
}

.cmx-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: #12070d;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(215, 38, 61, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cmx-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(215, 38, 61, 0.32);
}

.cmx-burger {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 120, 120, 0.35);
  background: rgba(32, 9, 15, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
}

.cmx-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.cmx-burger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.cmx-burger.active span:nth-child(2) {
  opacity: 0;
}

.cmx-burger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 991.98px) {
  .cmx-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 16px;
    padding: 14px;
    margin-top: 10px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
  }

  .cmx-nav.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .cmx-nav-link,
  .cmx-nav-cta {
    width: 100%;
  }

  .cmx-burger {
    display: inline-flex;
  }
}

@media (max-width: 575.98px) {
  .cmx-header-inner {
    padding: 14px 16px;
  }
}

.cmx-footer {
  background: radial-gradient(circle at 20% 20%, rgba(215, 38, 61, 0.08), transparent 35%),
              radial-gradient(circle at 85% 0%, rgba(255, 120, 120, 0.08), transparent 30%),
              linear-gradient(180deg, #180b12 0%, #12070d 100%);
  color: #e2e8f0;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.cmx-footer-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 26px;
}

.cmx-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 28px;
}

.cmx-footer-logo {
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.cmx-footer p {
  color: #cbd5e1;
  line-height: 1.6;
}

.cmx-footer-cta {
  display: inline-flex;
  margin-top: 18px;
  padding: 12px 18px;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: #12070d;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 14px 36px rgba(215, 38, 61, 0.3);
}

.cmx-footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.cmx-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.cmx-footer-col a {
  text-decoration: none;
  color: #cbd5e1;
}

.cmx-footer-col a:hover {
  color: var(--glow);
}

.cmx-footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #cbd5e1;
}

.cmx-footer-contact i {
  color: var(--glow);
  margin-top: 2px;
}

.cmx-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.cmx-footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.25);
  display: grid;
  place-items: center;
  color: #e2e8f0;
  transition: all 0.25s ease;
}

.cmx-footer-social a:hover {
  color: #12070d;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  border-color: transparent;
}

.cmx-footer-bottom {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #cbd5e1;
  flex-wrap: wrap;
}

.cmx-footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cmx-footer-links a {
  color: #cbd5e1;
  text-decoration: none;
}

.cmx-footer-links a:hover {
  color: var(--glow);
}

@media (max-width: 991.98px) {
  .cmx-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .cmx-footer {
    padding: 60px 0 32px;
  }

  .cmx-footer-grid {
    grid-template-columns: 1fr;
  }

  .cmx-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================================
   TERMS PAGE 2025 REDESIGN
   ========================================================= */
.terms-page {
  --terms-bg: #14070c;
  --terms-surface: #1a0d14;
  --terms-surface-2: #21111a;
  --terms-border: rgba(255, 255, 255, 0.08);
  --terms-primary: #ff6b6b;
  --terms-accent: #ff3b30;
  --terms-highlight: #ffc2c2;
  --terms-text: #f7e9ec;
  --terms-muted: #d9c5c9;
  background: var(--terms-bg);
  color: var(--terms-text);
  font-family: "Sanchez", "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.7;
}

.terms-page a {
  color: inherit;
}

.terms-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(6, 9, 18, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--terms-border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.terms-header-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.terms-logo {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--terms-text);
}

.terms-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.terms-nav-link {
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--terms-muted);
  font-weight: 600;
  transition: all 0.2s ease;
}

.terms-nav-link:hover {
  color: var(--terms-text);
  background: rgba(255, 255, 255, 0.04);
}

.terms-nav-cta {
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(120deg, var(--terms-primary), #8af7d5);
  color: #051014;
  box-shadow: 0 12px 32px rgba(124, 243, 160, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.terms-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(159, 140, 255, 0.25);
}

.terms-burger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--terms-border);
  background: rgba(255, 255, 255, 0.03);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.terms-burger span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background: var(--terms-text);
}

.terms-burger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.terms-burger.active span:nth-child(2) {
  opacity: 0;
}

.terms-burger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.terms-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 20px 80px;
  background: radial-gradient(circle at 20% 20%, rgba(124, 243, 160, 0.12), transparent 35%),
              radial-gradient(circle at 80% 0%, rgba(159, 140, 255, 0.14), transparent 38%),
              var(--terms-bg);
}

.terms-hero::before,
.terms-hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
}

.terms-hero::before {
  background: var(--terms-primary);
  top: -120px;
  left: -160px;
}

.terms-hero::after {
  background: var(--terms-accent);
  bottom: -180px;
  right: -120px;
}

.terms-hero-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 243, 160, 0.06), rgba(159, 140, 255, 0.08));
  z-index: 0;
}

.terms-hero-shell {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.terms-hero-copy h1 {
  margin: 14px 0 12px;
  font-size: clamp(2.4rem, 4vw, 3rem);
  line-height: 1.08;
  color: var(--terms-text);
}

.terms-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--terms-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--terms-text);
  letter-spacing: 0.04em;
  font-weight: 700;
}

.terms-lead {
  margin: 0 0 12px;
  color: var(--terms-muted);
  font-size: 1.05rem;
  max-width: 650px;
}

.terms-hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.terms-meta-card {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--terms-border);
  background: var(--terms-surface-2);
}

.meta-label {
  margin: 0 0 6px;
  color: var(--terms-highlight);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 800;
}

.meta-text {
  margin: 0;
  color: var(--terms-text);
}

.terms-mini-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--terms-muted);
}

.terms-mini-list i {
  color: var(--terms-primary);
  margin-right: 8px;
}

.terms-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.terms-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  transition: all 0.2s ease;
}

.terms-btn-primary {
  background: linear-gradient(120deg, var(--terms-primary), #8af7d5);
  color: #031419;
  box-shadow: 0 16px 40px rgba(124, 243, 160, 0.22);
}

.terms-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(159, 140, 255, 0.25);
}

.terms-btn-ghost {
  border: 1px solid var(--terms-border);
  color: var(--terms-text);
  background: rgba(255, 255, 255, 0.02);
}

.terms-btn-ghost:hover {
  border-color: var(--terms-primary);
  color: var(--terms-primary);
}

.terms-hero-panel {
  background: var(--terms-surface);
  border: 1px solid var(--terms-border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--terms-muted);
  font-weight: 700;
}

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

.panel-list li {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: var(--terms-surface-2);
  border: 1px solid var(--terms-border);
}

.panel-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(159, 140, 255, 0.12);
  color: var(--terms-accent);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.panel-list strong {
  display: block;
  color: var(--terms-text);
}

.panel-list p {
  margin: 4px 0 0;
  color: var(--terms-muted);
}

.panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--terms-muted);
}

.panel-footer a {
  color: var(--terms-primary);
  text-decoration: none;
}

.terms-sections {
  padding: 80px 20px 100px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.terms-sections-shell {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}

.sidebar-card,
.sidebar-help {
  background: var(--terms-surface);
  border: 1px solid var(--terms-border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

.sidebar-card h3,
.sidebar-help h4 {
  margin: 0 0 10px;
  color: var(--terms-text);
}

.terms-outline {
  list-style: decimal-leading-zero;
  padding-left: 18px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--terms-muted);
}

.terms-outline a {
  color: var(--terms-text);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 10px;
  display: block;
  transition: all 0.2s ease;
}

.terms-outline a:hover {
  color: var(--terms-primary);
  background: var(--terms-surface-2);
}

.sidebar-help p {
  margin: 0 0 12px;
  color: var(--terms-muted);
}

.sidebar-help .terms-btn {
  width: 100%;
  justify-content: center;
}

.terms-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.terms-card {
  background: var(--terms-surface);
  border: 1px solid var(--terms-border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.3);
}

.terms-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.terms-number {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--terms-accent), var(--terms-primary));
  color: #031419;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.terms-tag {
  margin: 0;
  color: var(--terms-muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.terms-card-head h2 {
  margin: 4px 0 0;
  color: var(--terms-text);
  font-size: 1.4rem;
}

.terms-chip {
  margin-left: auto;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid var(--terms-border);
  background: rgba(247, 194, 102, 0.12);
  color: var(--terms-highlight);
  font-weight: 800;
}

.terms-card-body p {
  margin: 10px 0 12px;
  color: var(--terms-muted);
}

.terms-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.terms-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--terms-surface-2);
  border: 1px solid var(--terms-border);
  color: var(--terms-text);
}

.terms-points i {
  color: var(--terms-primary);
  margin-top: 2px;
}

.terms-card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.terms-cta-banner {
  margin-top: 4px;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--terms-border);
  background: linear-gradient(120deg, rgba(124, 243, 160, 0.12), rgba(159, 140, 255, 0.16));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.terms-cta-banner h3 {
  margin: 4px 0 6px;
  color: var(--terms-text);
}

.terms-cta-banner p {
  margin: 0;
  color: var(--terms-muted);
}

.terms-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.terms-footer {
  border-top: 1px solid var(--terms-border);
  background: rgba(6, 9, 18, 0.92);
  padding: 26px 20px 30px;
}

.terms-footer-shell {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.terms-footer-brand {
  max-width: 360px;
}

.terms-footer-mark {
  display: inline-block;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--terms-text);
}

.terms-footer-brand p {
  margin: 6px 0 0;
  color: var(--terms-muted);
}

.terms-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.terms-footer-links a {
  text-decoration: none;
  color: var(--terms-muted);
  padding: 8px 10px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.terms-footer-links a:hover {
  color: var(--terms-primary);
  background: var(--terms-surface-2);
}

.terms-footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--terms-muted);
  font-size: 0.95rem;
}

@media (max-width: 1050px) {
  .terms-sections-shell {
    grid-template-columns: 1fr;
  }

  .terms-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(6, 9, 18, 0.95);
    border-bottom: 1px solid var(--terms-border);
    border-top: 1px solid var(--terms-border);
    padding: 12px 20px 18px;
    display: none;
    flex-direction: column;
    gap: 8px;
  }

  .terms-nav.show {
    display: flex;
  }

  .terms-nav-link,
  .terms-nav-cta {
    width: 100%;
    text-align: left;
  }

  .terms-burger {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  .terms-hero {
    padding: 90px 18px 60px;
  }

  .terms-header-shell {
    padding: 16px 18px;
  }

  .panel-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .terms-cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================================
   THANKS PAGE 2025 REDESIGN
   ========================================================= */
.thanks-page {
  --thanks-bg: #16070d;
  --thanks-surface: #1c0c14;
  --thanks-surface-2: #23111a;
  --thanks-border: rgba(255, 255, 255, 0.08);
  --thanks-primary: #ff6b6b;
  --thanks-accent: #ff3b30;
  --thanks-highlight: #ffc2c2;
  --thanks-text: #f7e9ec;
  --thanks-muted: #d9c5c9;
  background: var(--thanks-bg);
  color: var(--thanks-text);
  font-family: "Sanchez", "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.7;
}

.thanks-page a {
  color: inherit;
}

.thanks-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(5, 7, 16, 0.92);
  border-bottom: 1px solid var(--thanks-border);
  backdrop-filter: blur(14px);
}

.thanks-header-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.thanks-logo {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--thanks-text);
}

.thanks-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.thanks-nav-link {
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--thanks-muted);
  font-weight: 600;
  transition: all 0.2s ease;
}

.thanks-nav-link:hover {
  color: var(--thanks-text);
  background: rgba(255, 255, 255, 0.04);
}

.thanks-nav-cta {
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(120deg, var(--thanks-primary), #8af7d5);
  color: #051014;
  box-shadow: 0 12px 32px rgba(124, 243, 160, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.thanks-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(159, 140, 255, 0.25);
}

.thanks-burger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--thanks-border);
  background: rgba(255, 255, 255, 0.03);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.thanks-burger span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background: var(--thanks-text);
}

.thanks-burger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.thanks-burger.active span:nth-child(2) {
  opacity: 0;
}

.thanks-burger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.thanks-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 20px 90px;
  background: radial-gradient(circle at 20% 20%, rgba(124, 243, 160, 0.12), transparent 35%),
              radial-gradient(circle at 80% 0%, rgba(159, 140, 255, 0.14), transparent 38%),
              var(--thanks-bg);
}

.thanks-hero::before,
.thanks-hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
}

.thanks-hero::before {
  background: var(--thanks-primary);
  top: -120px;
  left: -160px;
}

.thanks-hero::after {
  background: var(--thanks-accent);
  bottom: -180px;
  right: -120px;
}

.thanks-hero-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 243, 160, 0.06), rgba(159, 140, 255, 0.08));
  z-index: 0;
}

.thanks-hero-shell {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.thanks-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--thanks-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--thanks-text);
  letter-spacing: 0.04em;
  font-weight: 700;
}

.thanks-pill.muted {
  color: var(--thanks-muted);
  background: rgba(255, 255, 255, 0.02);
}

.thanks-hero-copy h1 {
  margin: 16px 0 12px;
  font-size: clamp(2.4rem, 4vw, 3rem);
  line-height: 1.08;
  color: var(--thanks-text);
}

.thanks-lead {
  margin: 0 0 14px;
  color: var(--thanks-muted);
  font-size: 1.05rem;
  max-width: 650px;
}

.thanks-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.thanks-meta-card {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--thanks-border);
  background: var(--thanks-surface-2);
}

.thanks-mini-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--thanks-muted);
}

.thanks-mini-list i {
  color: var(--thanks-primary);
  margin-right: 8px;
}

.thanks-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.thanks-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  transition: all 0.2s ease;
}

.thanks-btn-primary {
  background: linear-gradient(120deg, var(--thanks-primary), #8af7d5);
  color: #031419;
  box-shadow: 0 16px 40px rgba(124, 243, 160, 0.22);
}

.thanks-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(159, 140, 255, 0.25);
}

.thanks-btn-ghost {
  border: 1px solid var(--thanks-border);
  color: var(--thanks-text);
  background: rgba(255, 255, 255, 0.02);
}

.thanks-btn-ghost:hover {
  border-color: var(--thanks-primary);
  color: var(--thanks-primary);
}

.thanks-hero-panel {
  background: var(--thanks-surface);
  border: 1px solid var(--thanks-border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--thanks-muted);
  font-weight: 700;
}

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

.panel-list li {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: var(--thanks-surface-2);
  border: 1px solid var(--thanks-border);
}

.panel-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(159, 140, 255, 0.12);
  color: var(--thanks-accent);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.panel-list strong {
  display: block;
  color: var(--thanks-text);
}

.panel-list p {
  margin: 4px 0 0;
  color: var(--thanks-muted);
}

.panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--thanks-muted);
}

.panel-footer a {
  color: var(--thanks-primary);
  text-decoration: none;
}

.thanks-steps {
  padding: 80px 20px 100px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.thanks-steps-shell {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.steps-header h2 {
  margin: 8px 0 6px;
  font-size: 2rem;
  color: var(--thanks-text);
}

.steps-subtitle {
  margin: 0;
  color: var(--thanks-muted);
  max-width: 720px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.step-card {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--thanks-border);
  background: var(--thanks-surface);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.28);
}

.step-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(124, 243, 160, 0.14);
  color: var(--thanks-primary);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.step-card h3 {
  margin: 0 0 6px;
  color: var(--thanks-text);
}

.step-card p {
  margin: 0;
  color: var(--thanks-muted);
}

.thanks-cta {
  padding: 0 20px 90px;
}

.thanks-cta-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--thanks-border);
  background: linear-gradient(120deg, rgba(124, 243, 160, 0.12), rgba(159, 140, 255, 0.16));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.thanks-tag {
  margin: 0;
  color: var(--thanks-highlight);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.85rem;
}

.thanks-cta h3 {
  margin: 6px 0;
  color: var(--thanks-text);
}

.thanks-cta-text {
  margin: 0;
  color: var(--thanks-muted);
}

.thanks-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.thanks-footer {
  border-top: 1px solid var(--thanks-border);
  background: rgba(5, 7, 16, 0.92);
  padding: 26px 20px 30px;
}

.thanks-footer-shell {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.thanks-footer-brand {
  max-width: 360px;
}

.thanks-footer-mark {
  display: inline-block;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--thanks-text);
}

.thanks-footer-brand p {
  margin: 6px 0 0;
  color: var(--thanks-muted);
}

.thanks-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.thanks-footer-links a {
  text-decoration: none;
  color: var(--thanks-muted);
  padding: 8px 10px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.thanks-footer-links a:hover {
  color: var(--thanks-primary);
  background: var(--thanks-surface-2);
}

.thanks-footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--thanks-muted);
  font-size: 0.95rem;
}

@media (max-width: 1050px) {
  .thanks-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(5, 7, 16, 0.95);
    border-bottom: 1px solid var(--thanks-border);
    border-top: 1px solid var(--thanks-border);
    padding: 12px 20px 18px;
    display: none;
    flex-direction: column;
    gap: 8px;
  }

  .thanks-nav.show {
    display: flex;
  }

  .thanks-nav-link,
  .thanks-nav-cta {
    width: 100%;
    text-align: left;
  }

  .thanks-burger {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  .thanks-hero {
    padding: 90px 18px 60px;
  }

  .thanks-header-shell {
    padding: 16px 18px;
  }

  .panel-footer,
  .thanks-cta-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}
