﻿/********** Template CSS **********/
:root {
 --primary: #fcd34d;
 --light: #fef9c3;
 --dark: #d97706;
 --bg-color: #ffffff;
 --accent-color: #f59e0b;
 --text-color: #1f2937;
 --white: #ffffff;
 --bg-primary: #fffbeb;
 --text-primary: #1f2937;
 --heading-color: #eab308;
 --font-family: 'Fira Sans Condensed', sans-serif;
 --font-family-sans: 'Fira Sans Condensed', sans-serif;
 --font-family-mono: 'Fira Sans Condensed', sans-serif;

--border-radius: 6px;
--shadow: 0 4px 12px rgba(252, 211, 77, 0.3);
}

body {
 font-family: var(--font-family);
 line-height: 1.6;
 background: var(--bg-color);
 position: relative;
 overflow-x: hidden;
 color: var(--text-color);
}

body::before {
 content: none;
}

body::after {
 content: none;
}

@keyframes backgroundShift {
 0%, 100% {
  background: none;
 }
 33% {
  background: none;
 }
 66% {
  background: none;
 }
}

@keyframes gradientMove {
 0% {
  background-position: 0% 50%;
 }
 50% {
  background-position: 100% 50%;
 }
 100% {
  background-position: 0% 50%;
 }
}

.page-preloader {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: linear-gradient(135deg, var(--light) 0%, var(--bg-primary) 50%, var(--light) 100%);
 z-index: 99999;
 display: flex;
 align-items: center;
 justify-content: center;
 opacity: 1;
 visibility: visible;
 transition: opacity 0.6s ease, visibility 0.6s ease;
}

.action-primary {
  background-color: var(--primary);
  color: var(--text-primary);
}
.action-secondary {
  border-color: var(--primary);
  color: var(--text-color);
}
.navigation-panel {
  background-color: var(--white);
}

body.preloader-active {
  overflow: hidden;
  height: 100%;
}

.page-preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.preloader-logo {
  margin-bottom: 3rem;
  animation: preloaderFadeIn 0.8s ease-out;
}

.preloader-logo-icon {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 102, 241, 0.1);
  border: 2px solid rgba(99, 102, 241, 0.3);
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.preloader-logo-icon .material-icons-outlined {
  font-size: 3.5rem;
  color: #6366f1;
  z-index: 1;
  animation: preloaderIconPulse 2s ease-in-out infinite;
}

.preloader-logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.4), transparent);
  border-radius: 50%;
  animation: preloaderGlowPulse 2s ease-in-out infinite;
}

@keyframes preloaderIconPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes preloaderGlowPulse {
  0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.preloader-logo-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.preloader-logo-primary {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}

.preloader-logo-secondary {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #6366f1 0%, #10b981 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.preloader-spinner {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  animation: preloaderFadeIn 0.8s ease-out 0.2s both;
}

.spinner-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top-color: #6366f1;
  border-radius: 50%;
  animation: preloaderSpin 1.5s linear infinite;
}

.spinner-ring:nth-child(1) {
  animation-delay: 0s;
  border-top-color: #6366f1;
}

.spinner-ring:nth-child(2) {
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  animation-delay: 0.2s;
  animation-duration: 1.2s;
  border-top-color: #10b981;
}

.spinner-ring:nth-child(3) {
  width: 50%;
  height: 50%;
  top: 25%;
  left: 25%;
  animation-delay: 0.4s;
  animation-duration: 1s;
  border-top-color: #fbbf24;
}

@keyframes preloaderSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.preloader-progress {
  width: 200px;
  height: 4px;
  background: rgba(99, 102, 241, 0.2);
  border-radius: 10px;
  margin: 0 auto;
  overflow: hidden;
  animation: preloaderFadeIn 0.8s ease-out 0.4s both;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #6366f1 0%, #10b981 50%, #fbbf24 100%);
  border-radius: 10px;
  animation: preloaderProgress 2s ease-in-out forwards;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

@keyframes preloaderProgress {
  0% {
    width: 0%;
  }
  50% {
    width: 70%;
  }
  100% {
    width: 100%;
  }
}

@keyframes preloaderFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .preloader-logo-icon {
    width: 80px;
    height: 80px;
  }
  
  .preloader-logo-icon .material-icons-outlined {
    font-size: 2.5rem;
  }
  
  .preloader-logo-primary,
  .preloader-logo-secondary {
    font-size: 1.5rem;
  }
  
  .preloader-spinner {
    width: 60px;
    height: 60px;
  }
  
  .preloader-progress {
    width: 150px;
  }
}

/* Floating particles animation */
.p-0 {
  position: relative;
}

.p-0::before {
  content: '';
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(139, 92, 246, 0.4), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(16, 185, 129, 0.4), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(167, 139, 250, 0.3), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(107, 70, 193, 0.3), transparent),
    radial-gradient(2px 2px at 90% 40%, rgba(52, 211, 153, 0.3), transparent),
    radial-gradient(1px 1px at 33% 60%, rgba(139, 92, 246, 0.2), transparent),
    radial-gradient(1px 1px at 66% 20%, rgba(16, 185, 129, 0.2), transparent);
  background-repeat: repeat;
  background-size: 200% 200%;
  animation: particleFloat 25s linear infinite;
  opacity: 0.6;
}

@keyframes particleFloat {
  0% {
    transform: translate(0, 0);
    background-position: 0% 0%;
  }
  25% {
    transform: translate(-5%, -5%);
    background-position: 25% 25%;
  }
  50% {
    transform: translate(5%, -10%);
    background-position: 50% 50%;
  }
  75% {
    transform: translate(-3%, 5%);
    background-position: 75% 75%;
  }
  100% {
    transform: translate(0, 0);
    background-position: 100% 100%;
  }
}

/* Headings use JetBrains Mono for tech look */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-mono);
  font-weight: 600;
}

/* Text content uses Inter */
p, .text-content, .about-text, .advantage-text, .program-feature-text, 
.plan-feature-text, .tip-description, .testimonial-text, .contact-description {
  font-family: var(--font-family);
  line-height: 1.6;
}

/* Buttons and UI elements use Inter for better readability */
.btn, .navbar, .form-control, .nav-link, .form-floating label {
  font-family: var(--font-family-sans);
}
.bg-dark {
  background-color: var(--dark) !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semi-bold {
  font-weight: 600 !important;
}

.error-message {
  color: var(--primary);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
  min-height: 1.2rem;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.error-message:not(:empty) {
  opacity: 1;
}

/* Додатковий стиль для полів з помилками */
.form-control.error {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 0.2rem var(--dark) !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;
  text-transform: uppercase;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
  border-radius: 10px;
}

.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;
  border-radius: 2px;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
}

  /* Footer Styles */
  .footer {
    background-color: var(--dark) !important;
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-brand {
    color: #ffffff !important;
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-brand:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
}



.btn-link {
    color: #ffffff !important;
    text-decoration: none;
    padding: 0.5rem 0;
    border: none;
    text-align: left;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-link:hover {
    color: var(--primary) !important;
    transform: translateX(5px);
}

.footer-email {
    color: #ffffff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-email-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.footer-section-title {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Copyright section */
.footer-bottom {
    border-top: 1px solid #4c1d95;
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: #a78bfa;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-brand {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        margin-bottom: 1.5rem;
    }
}

/* Google Fonts - Fira Sans Condensed */
@import url("../css2");

/* ===== MODERN SIDEBAR DESIGN SYSTEM ===== */

/* Modern Sidebar */
/* ============================================
   NEW NAVIGATION PANEL STYLES
   ============================================ */

.navigation-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #6d5d17 0%, #3b371e 50%, #68661a 100%);
  backdrop-filter: blur(20px);
  border-right: 1px solid rgba(99, 102, 241, 0.2);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.4);
}

.navigation-panel.collapsed {
  width: 80px;
}

.navigation-panel.collapsed .panel-logo-text-block,
.navigation-panel.collapsed .menu-link-label {
  opacity: 0;
  visibility: hidden;
}

.navigation-panel.collapsed .panel-toggle-button {
  transform: rotate(180deg);
}

/* Panel Header Section */
.panel-header-section {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .panel-header-section {
    padding-top: 0;
  }
}

.panel-logo-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.panel-logo-icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6366f1, #10b981);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
}

.panel-logo-icon-box .material-icons-outlined {
  font-size: 1.8rem;
  color: #ffffff;
  z-index: 2;
}

.logo-icon-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.panel-logo-icon-box:hover .logo-icon-glow {
  opacity: 1;
}

.panel-logo-text-block {
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.logo-primary-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Fira Sans Condensed', sans-serif;
  line-height: 1;
}

.logo-secondary-text {
  font-size: 0.9rem;
  color: #818cf8;
  font-weight: 500;
  font-family: 'Fira Sans Condensed', sans-serif;
  line-height: 1;
}

.panel-toggle-button {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 8px;
  padding: 0.5rem;
  color: #818cf8;
  cursor: pointer;
  transition: all 0.3s ease;
}

.panel-toggle-button:hover {
  background: rgba(99, 102, 241, 0.2);
  transform: scale(1.05);
}

/* Panel Navigation Menu */
.panel-navigation-menu {
  padding: 2rem 0;
}

.menu-items-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-item {
  margin-bottom: 0.5rem;
  position: relative;
}

.menu-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.menu-link-highlight {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #6366f1, #10b981);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.menu-link:hover .menu-link-highlight,
.menu-item.active .menu-link-highlight {
  transform: scaleY(1);
}

.menu-link:hover,
.menu-item.active .menu-link {
  background: rgba(99, 102, 241, 0.1);
  color: #ffffff;
  transform: translateX(8px);
}

.menu-link-icon-box {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.menu-link:hover .menu-link-icon-box,
.menu-item.active .menu-link-icon-box {
  background: rgba(99, 102, 241, 0.2);
  transform: scale(1.1);
}

.menu-link-icon-box .material-icons-outlined {
  font-size: 1.5rem;
  transition: all 0.3s ease;
  min-width: 24px;
}

.menu-link-label {
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: 'Fira Sans Condensed', sans-serif;
}

/* Panel Footer Section */
.panel-footer-section {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(99, 102, 241, 0.1);
}

.panel-social-block {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-link-button {
  width: 40px;
  height: 40px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #818cf8;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link-button:hover {
  background: rgba(99, 102, 241, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

/* Mobile Header Bar */
.mobile-header-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: linear-gradient(135deg, #7a8112 0%, #1e293b 100%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(99, 102, 241, 0.2);
  z-index: 1001;
  padding: 0 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.mobile-logo-block {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.2rem;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.mobile-logo-block .material-icons-outlined {
  color: #818cf8;
  font-size: 1.5rem;
}

.mobile-menu-toggle {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 8px;
  padding: 0.5rem;
  color: #818cf8;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(99, 102, 241, 0.2);
}

/* Panel Toggle Floating Button for Desktop */
.panel-toggle-floating {
  position: fixed;
  top: 30px;
  left: 20px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #6366f1, #10b981);
  border: none;
  border-radius: 30%;
  color: #ffffff;
  cursor: pointer;
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
}

.panel-toggle-floating:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
}

.panel-toggle-floating .material-icons-outlined {
  font-size: 1.5rem;
}

/* Show toggle button only when panel is collapsed */
.panel-toggle-floating {
  display: none;
}

body.sidebar-collapsed .panel-toggle-floating {
  display: flex;
}

/* Main Content Offset */
body {
  margin-left: 280px;
  transition: margin-left 0.3s ease;
  overflow-x: hidden;
}

body.sidebar-collapsed {
  margin-left: 80px;
}

/* Prevent horizontal scroll */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  body {
    margin-left: 0;
  }
  
  .navigation-panel {
    transform: translateX(-100%);
    width: 280px;
  }
  
  .navigation-panel.open {
    transform: translateX(0);
  }
  
  .mobile-header-bar {
    display: flex;
  }
  
  .panel-toggle-floating {
    display: none !important;
  }
  
  .navigation-panel.collapsed {
    width: 280px;
  }
}

@media (min-width: 769px) {
  .mobile-header-bar {
    display: none;
  }
}

.futuristic-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
  animation: scan-line 3s linear infinite;
}

@keyframes scan-line {
  0% { left: -100%; }
  100% { left: 100%; }
}

.futuristic-navbar {
  padding: 1.5rem 0;
  position: relative;
  z-index: 10;
}

.futuristic-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.futuristic-logo-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8b5cf6, #10b981);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

.futuristic-logo-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.futuristic-logo-text {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Fira Sans Condensed', sans-serif;
  background: linear-gradient(135deg, #8b5cf6, #ffffff, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.futuristic-nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.futuristic-nav-link {
  position: relative;
  padding: 1rem 2rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  border: 2px solid transparent;
  border-radius: 25px;
  transition: all 0.3s ease;
  background: rgba(139, 92, 246, 0.1);
  backdrop-filter: blur(10px);
}

.futuristic-nav-link:hover {
  border-color: #8b5cf6;
  background: rgba(139, 92, 246, 0.2);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
  transform: translateY(-3px);
}

.futuristic-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 25px;
  background: linear-gradient(135deg, #8b5cf6, #10b981);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.futuristic-nav-link:hover::before {
  opacity: 0.1;
}

/* Futuristic Sections */
.futuristic-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

.futuristic-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 153, 204, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.futuristic-section-content {
  position: relative;
  z-index: 2;
}

.futuristic-title {
  font-size: 4rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  font-family: 'Fira Sans Condensed', sans-serif;
  background: linear-gradient(135deg, #8b5cf6, #ffffff, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

.futuristic-title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 200px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #8b5cf6, #10b981, #8b5cf6, transparent);
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

/* Futuristic Cards */
.futuristic-card {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  border: 2px solid transparent;
  border-radius: 30px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.futuristic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(0, 153, 204, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.futuristic-card:hover::before {
  opacity: 1;
}

.futuristic-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 30px;
  background: linear-gradient(135deg, #8b5cf6, #10b981, #8b5cf6);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.futuristic-card:hover::after {
  opacity: 1;
}

.futuristic-card:hover {
  transform: translateY(-20px) scale(1.02);
  box-shadow: 0 30px 60px rgba(139, 92, 246, 0.3);
}

/* Futuristic Program Cards */
.futuristic-program-card {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(25px);
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 35px;
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.futuristic-program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #8b5cf6, #10b981, #8b5cf6);
  background-size: 200% 100%;
  animation: gradient-flow 3s ease infinite;
}

@keyframes gradient-flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.futuristic-program-number {
  position: absolute;
  top: -25px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8b5cf6, #10b981);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  color: #000000;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.6);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.futuristic-program-card:hover {
  transform: translateY(-25px) rotateX(5deg);
  box-shadow: 0 40px 80px rgba(139, 92, 246, 0.4);
  border-color: #8b5cf6;
}

/* Futuristic Icons */
.futuristic-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(0, 153, 204, 0.2));
  border: 2px solid rgba(139, 92, 246, 0.5);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.futuristic-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #8b5cf6, #10b981);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.futuristic-icon:hover::before {
  opacity: 0.2;
}

.futuristic-icon:hover {
  transform: scale(1.1) rotateY(10deg);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
  border-color: #8b5cf6;
}

.futuristic-icon .material-icons-outlined {
  font-size: 2.5rem;
  color: #8b5cf6;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.futuristic-icon:hover .material-icons-outlined {
  color: #ffffff;
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.8);
}

/* Futuristic Buttons */
.futuristic-btn {
  background: linear-gradient(135deg, #8b5cf6, #10b981);
  border: none;
  border-radius: 30px;
  padding: 1.5rem 3rem;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000000;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.futuristic-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.6s ease;
}

.futuristic-btn:hover::before {
  left: 100%;
}

.futuristic-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.6);
  background: linear-gradient(135deg, #10b981, #8b5cf6);
}

/* Futuristic Footer */
.futuristic-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, #8b5cf6, #10b981, #8b5cf6) 1;
  position: relative;
  overflow: hidden;
}

.futuristic-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #8b5cf6, #10b981, #8b5cf6, transparent);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

.futuristic-footer-brand {
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Fira Sans Condensed', sans-serif;
  background: linear-gradient(135deg, #8b5cf6, #ffffff, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

/* Futuristic Contact Form */
.futuristic-form {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(25px);
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 35px;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}

.futuristic-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(0, 153, 204, 0.05));
  z-index: 1;
}

.futuristic-form-content {
  position: relative;
  z-index: 2;
}

.futuristic-input {
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.futuristic-input:focus {
  background: rgba(0, 0, 0, 0.5);
  border-color: #8b5cf6;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
  outline: none;
}

.futuristic-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
  .futuristic-title {
    font-size: 2.5rem;
  }
  
  .futuristic-card {
    padding: 2rem;
  }
  
  .futuristic-program-card {
    padding: 2.5rem;
  }
  
  .futuristic-nav-links {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 700px) {
  .cookie-wrapper {
    width: 100%;
  }
}

/* Privacy Notice Banner - New Styles */
.privacy-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: linear-gradient(135deg, #1e293b 0%, #7a8112 100%);
  border-top: 3px solid #6366f1;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.privacy-notice-visible {
  transform: translateY(0);
}

.privacy-notice-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

.privacy-notice-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.privacy-notice-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.privacy-notice-icon .material-icons-outlined {
  color: #ffffff;
  font-size: 28px;
}

.privacy-notice-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.privacy-notice-body {
  flex: 1;
}

.privacy-notice-text {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.privacy-notice-link {
  color: #818cf8;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.privacy-notice-link:hover {
  color: #a5b4fc;
}

.privacy-notice-actions {
  display: flex;
  gap: 1rem;
}

.privacy-button {
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Fira Sans Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.privacy-button-accept {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.privacy-button-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

.privacy-button-decline {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.privacy-button-decline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .privacy-notice-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .privacy-notice-header {
    justify-content: center;
  }
  
  .privacy-notice-actions {
    flex-direction: column;
  }
  
  .privacy-button {
    width: 100%;
  }
}

/* Neue Styles für DeinErfolgscode */
/* Globale Variablen */

/* Hero-Sektion Styling */
.hero-section {
  padding: 150px 0;
  background: rgba(251, 255, 255, 0.85);
  backdrop-filter: blur(10px);
}

.hero-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  color: var(--accent-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 3rem;
  max-width: 600px;
}

.stats-card {
  background: var(--bg-primary);
  border: 2px solid #f0f0f0;
  border-radius: var(--border-radius);
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.stats-card:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.stats-label {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 1rem;
}

.btn-primary-custom {
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: white;
  padding: 12px 32px;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 10px;
}

.btn-primary-custom:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-section {
    padding: 60px 0;
  }
  
  .stats-card {
    margin-bottom: 1.5rem;
  }
}
/* Über uns Sektion Styling */
.about-section {
  padding: 80px 0;
  background: rgba(248, 250, 252, 0.15);
}

.about-image {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.about-text {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--bg-primary);
  border-left: 4px solid var(--accent-color);
  border-radius: var(--border-radius);
}

.feature-icon {
  color: var(--accent-color);
  margin-right: 1rem;
  margin-top: 0.2rem;
  font-size: 1.5rem;
}

.feature-text {
  flex: 1;
  color: var(--text-primary);
  font-size: 1rem;
}

/* Programs Timeline Section */
.programs-timeline-section {
  padding: 120px 0;
  background: rgba(248, 250, 252, 0.25);
  position: relative;
  overflow: hidden;
}



.timeline-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.timeline-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--heading-color);
  font-family: 'Fira Sans Condensed', sans-serif;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #6b46c1, #1a0f2e, #6b46c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.timeline-subtitle {
  font-size: 1.2rem;
  color: var(--text-primary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  z-index: 2;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #6b46c1, #1a0f2e, #6b46c1);
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(107, 70, 193, 0.3);
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.8s ease forwards;
}

.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.4s; }
.timeline-item:nth-child(4) { animation-delay: 0.6s; }

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.marker-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #6b46c1, #34d399);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(107, 70, 193, 0.4);
  border: 4px solid #ffffff;
  transition: all 0.3s ease;
}

.marker-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(107, 70, 193, 0.6);
}

.marker-icon .material-icons-outlined {
  font-size: 2rem;
  color: #ffffff;
}

.marker-number {
  background: var(--heading-color);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Fira Sans Condensed', sans-serif;
  box-shadow: 0 5px 15px rgba(15, 23, 42, 0.3);
}

.timeline-content {
  flex: 1;
  max-width: 45%;
  padding: 0 2rem;
}

.timeline-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(107, 70, 193, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  
}
@media (min-width: 768px) {
  .timeline-card {
    width: 450px;
  }
}
.timeline-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6b46c1, #34d399, #6b46c1);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.timeline-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.15);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  font-family: 'Fira Sans Condensed', sans-serif;
  margin: 0;
}

.card-badge {
  background: linear-gradient(135deg, #6b46c1, #34d399);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-body {
  margin-bottom: 2rem;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tech-tag {
  background: rgba(107, 70, 193, 0.1);
  color: #6b46c1;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(107, 70, 193, 0.2);
}

.card-description {
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.feature-item .material-icons-outlined {
  color: #6b46c1;
  font-size: 1.2rem;
}

.card-footer {
  text-align: right;
}

.explore-btn {
  background: linear-gradient(135deg, #6b46c1, #34d399);
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.explore-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(107, 70, 193, 0.4);
  background: linear-gradient(135deg, #34d399, #6b46c1);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Responsive Timeline */
@media (max-width: 768px) {
  .timeline-line {
    left: 2rem;
  }
  
  .timeline-marker {
    left: 2rem;
  }
  
  .timeline-item {
    flex-direction: row !important;
    padding-left: 4rem;
  }
  
  .timeline-content {
    max-width: 100%;
    padding: 0;
  }
  
  .timeline-title {
    font-size: 2.5rem;
  }
}

.programs-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.program-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(107, 70, 193, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(107, 70, 193, 0.08);
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.program-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 12px 40px rgba(107, 70, 193, 0.15);
  transform: translateY(-8px);
}

.program-card:hover::before {
  transform: scaleX(1);
}

.btn-small {
  padding: 4px 10px;
  text-transform: initial;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 0px;
}
.program-number {
  background: linear-gradient(135deg, var(--accent-color) 0%, #34d399 100%);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  position: relative;
  transition: all 0.3s ease;
}

.program-number::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), #34d399);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.program-card:hover .program-number::before {
  opacity: 1;
}

.program-title {
  color: var(--heading-color);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  position: relative;
}

.program-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.2rem;
  padding: 0.8rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(107, 70, 193, 0.02);
}

.program-feature:hover {
  background: rgba(107, 70, 193, 0.05);
  transform: translateX(4px);
}

.program-feature-icon {
  color: var(--accent-color);
  margin-right: 1rem;
  margin-top: 0.2rem;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.program-feature:hover .program-feature-icon {
  color: var(--primary);
  transform: scale(1.1);
}

.program-feature-text {
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}

/* Responsive Design für neue Sektionen */
@media (max-width: 768px) {
  .about-title, .programs-title {
    font-size: 2rem;
  }
  
  .about-image {
    height: 300px;
    margin-bottom: 2rem;
  }
  
  .program-card {
    padding: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .program-number {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .program-title {
    font-size: 1.4rem;
  }
  
  .program-feature {
    padding: 0.6rem;
    margin-bottom: 1rem;
  }
  
  .program-feature-text {
    font-size: 0.95rem;
  }
}

/* Advantages Mosaic Section */
.advantages-mosaic-section {
  padding: 120px 0;
  background: rgba(15, 23, 42, 1);
  position: relative;
  overflow: hidden;
}


.mosaic-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.mosaic-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Fira Sans Condensed', sans-serif;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #6b46c1, #ffffff, #6b46c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mosaic-subtitle {
  font-size: 1.2rem;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(8, 80px);
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.mosaic-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(107, 70, 193, 0.2);
}

.mosaic-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(107, 70, 193, 0.3);
  border-color: #6b46c1;
}

/* Large Card */
.large-card {
  grid-column: 1 / 7;
  grid-row: 1 / 5;
  background: linear-gradient(135deg, rgba(107, 70, 193, 0.1), rgba(16, 185, 129, 0.1));
}

/* Medium Cards */
.medium-card {
  grid-column: 7 / 13;
  grid-row: 1 / 3;
}

.medium-card:nth-child(3) {
  grid-row: 3 / 5;
}

/* Small Cards */
.small-card {
  grid-column: span 3;
  grid-row: span 2;
}

.small-card:nth-child(4) { grid-column: 1 / 4; grid-row: 5 / 7; }
.small-card:nth-child(5) { grid-column: 4 / 7; grid-row: 5 / 7; }
.small-card:nth-child(6) { grid-column: 7 / 10; grid-row: 5 / 7; }
.small-card:nth-child(7) { grid-column: 10 / 13; grid-row: 5 / 7; }

/* Image Card */
.image-card {
  grid-column: 1 / 7;
  grid-row: 7 / 9;
}

.mosaic-content {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.mosaic-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6b46c1, #34d399);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(107, 70, 193, 0.3);
}

.mosaic-icon .material-icons-outlined {
  font-size: 1.8rem;
  color: #ffffff;
}

.mosaic-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Fira Sans Condensed', sans-serif;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.mosaic-card-text {
  color: #cbd5e1;
  line-height: 1.6;
  font-size: 0.95rem;
}

.mosaic-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #6b46c1;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.stat-label {
  font-size: 0.8rem;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mosaic-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(107, 70, 193, 0.9), rgba(16, 185, 129, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 3;
}

.mosaic-item:hover .mosaic-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: #ffffff;
  padding: 2rem;
}

.overlay-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.overlay-content p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.mosaic-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mosaic-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.mosaic-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mosaic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.mosaic-item:hover .mosaic-image img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(107, 70, 193, 0.8), rgba(16, 185, 129, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.mosaic-item:hover .image-overlay {
  opacity: 1;
}

.image-content {
  text-align: center;
  color: #ffffff;
}

.image-content h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.image-content p {
  font-size: 1rem;
  opacity: 0.9;
}

/* Responsive Mosaic */
@media (max-width: 1200px) {
  .mosaic-grid {
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(10, 60px);
  }
  
  .large-card {
    grid-column: 1 / 5;
    grid-row: 1 / 6;
  }
  
  .medium-card {
    grid-column: 5 / 9;
    grid-row: 1 / 3;
  }
  
  .medium-card:nth-child(3) {
    grid-row: 3 / 5;
  }
  
  .small-card {
    grid-column: span 2;
    grid-row: span 2;
  }
  
  .small-card:nth-child(4) { grid-column: 1 / 3; grid-row: 6 / 8; }
  .small-card:nth-child(5) { grid-column: 3 / 5; grid-row: 6 / 8; }
  .small-card:nth-child(6) { grid-column: 5 / 7; grid-row: 6 / 8; }
  .small-card:nth-child(7) { grid-column: 7 / 9; grid-row: 6 / 8; }
  
  .image-card {
    grid-column: 1 / 5;
    grid-row: 8 / 11;
  }
}

@media (max-width: 768px) {
  .mosaic-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1.5rem;
  }
  
  .mosaic-item {
    grid-column: 1 !important;
    grid-row: auto !important;
    min-height: 200px;
  }
  
  .mosaic-title {
    font-size: 2.5rem;
  }
}

/* Policy Pages Styles */
.policy-section {
  padding: 120px 0;
  background: rgba(248, 250, 252, 0.85);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}



.policy-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.policy-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--heading-color);
  font-family: 'Fira Sans Condensed', sans-serif;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #6b46c1, #1a0f2e, #6b46c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.policy-subtitle {
  font-size: 1.2rem;
  color: var(--text-primary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.policy-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.policy-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(107, 70, 193, 0.1);
  position: relative;
  overflow: hidden;
}

.policy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6b46c1, #34d399, #6b46c1);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.policy-intro {
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(107, 70, 193, 0.05);
  border-radius: 15px;
  border-left: 4px solid #6b46c1;
}

.policy-intro p {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.7;
  margin: 0;
}

.policy-section-item {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(107, 70, 193, 0.1);
}

.policy-section-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.policy-section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  font-family: 'Fira Sans Condensed', sans-serif;
  margin-bottom: 1.5rem;
}

.policy-section-title .material-icons-outlined {
  color: #6b46c1;
  font-size: 2rem;
}

.policy-section-item p {
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 1rem;
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.policy-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(107, 70, 193, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(107, 70, 193, 0.1);
  transition: all 0.3s ease;
}

.policy-list-item:hover {
  background: rgba(107, 70, 193, 0.05);
  transform: translateX(5px);
}

.policy-list-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6b46c1, #34d399);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.policy-list-icon .material-icons-outlined {
  color: #ffffff;
  font-size: 1.5rem;
}

.policy-list-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.policy-list-content p {
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0;
}

.policy-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(107, 70, 193, 0.1);
}

.policy-features li:last-child {
  border-bottom: none;
}

.policy-features .material-icons-outlined {
  color: #6b46c1;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.policy-rights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.policy-right-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: rgba(107, 70, 193, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(107, 70, 193, 0.1);
}

.policy-right-item .material-icons-outlined {
  color: #6b46c1;
  font-size: 1.2rem;
}

.policy-link {
  color: #6b46c1;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.policy-link:hover {
  color: #34d399;
  text-decoration: underline;
}

/* Responsive Policy Pages */
@media (max-width: 768px) {
  .policy-section {
    padding: 80px 0;
  }
  
  .policy-title {
    font-size: 2.5rem;
  }
  
  .policy-card {
    padding: 2rem;
    margin: 0 1rem;
  }
  
  .policy-section-title {
    font-size: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .policy-list-item {
    flex-direction: column;
    text-align: center;
  }
  
  .policy-rights {
    grid-template-columns: 1fr;
  }
}

.advantages-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%23f59e0b" opacity="0.1"/><circle cx="0" cy="0" r="1" fill="%231e40af" opacity="0.05"/><circle cx="40" cy="40" r="1" fill="%23f59e0b" opacity="0.05"/></pattern></defs><rect width="200" height="200" fill="url(%23dots)"/></svg>');
  opacity: 0.4;
  z-index: 1;
}

.advantages-section .container {
  position: relative;
  z-index: 2;
}

.advantages-title {
  color: var(--heading-color);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 3.2rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.advantages-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary) 100%);
  border-radius: 2px;
}

.advantages-intro {
  font-family: var(--font-family);
  font-size: 1.3rem;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 400;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(107, 70, 193, 0.08);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(107, 70, 193, 0.06);
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary) 50%, var(--accent-color) 100%);
  background-size: 200% 100%;
  animation: shimmer 4s ease-in-out infinite;
}

.advantage-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.03) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.advantage-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(107, 70, 193, 0.15);
  border-color: var(--accent-color);
}

.advantage-card:hover::after {
  opacity: 1;
}

.advantage-icon {
  background: linear-gradient(135deg, var(--accent-color) 0%, #34d399 100%);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  position: relative;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
  transition: all 0.3s ease;
}

.advantage-icon::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), #34d399);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.advantage-card:hover .advantage-icon::before {
  opacity: 1;
}

.advantage-card:hover .advantage-icon {
  transform: scale(1.1) rotate(5deg);
}

.advantage-title-item {
  color: var(--heading-color);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.advantage-text {
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
}

.advantages-image {
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(107, 70, 193, 0.1);
  width: 100%;
  height: 280px;
  object-fit: cover;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.advantages-image:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(107, 70, 193, 0.2);
}

.advantages-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(107, 70, 193, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
  border-radius: 20px;
  border: 1px solid rgba(107, 70, 193, 0.1);
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-family: var(--font-family);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-family: var(--font-family);
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* Moderne Erfolgsgeschichten-Sektion */
.success-section {
  padding: 100px 0;
  background: rgba(241, 245, 249, 0.15);
  position: relative;
  overflow: hidden;
}


.success-section .container {
  position: relative;
  z-index: 2;
}

.success-title {
  color: var(--heading-color);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 3.2rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.success-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary) 100%);
  border-radius: 2px;
}

.success-intro {
  font-family: var(--font-family);
  font-size: 1.3rem;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 400;
}

.success-slider {
  padding: 2rem 0;
  position: relative;
}

.testimonial-card {
  font-family: var(--font-family);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(107, 70, 193, 0.08);
  border-radius: 20px;
  padding: 3rem;
  margin: 1rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(107, 70, 193, 0.08);
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary) 50%, var(--accent-color) 100%);
  background-size: 200% 100%;
  animation: shimmer 4s ease-in-out infinite;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.02) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(107, 70, 193, 0.15);
  border-color: var(--accent-color);
}

.testimonial-card:hover::after {
  opacity: 1;
}

.testimonial-quote {
  position: absolute;
  top: -15px;
  left: 30px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #34d399 100%);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
  z-index: 3;
}

.testimonial-text {
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: italic;
  margin-top: 1.5rem;
  font-weight: 400;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 3rem;
  color: var(--accent-color);
  opacity: 0.3;
  font-family: serif;
}

.testimonial-text::after {
  content: '"';
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-size: 3rem;
  color: var(--accent-color);
  opacity: 0.3;
  font-family: serif;
}

.testimonial-author {
  color: var(--heading-color);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(107, 70, 193, 0.1);
}

.author-icon {
  color: var(--accent-color);
  margin-right: 0.8rem;
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--accent-color), #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Swiper Navigation Styling */
.success-slider .swiper-button-next,
.success-slider .swiper-button-prev {
  color: var(--accent-color);
  background: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(107, 70, 193, 0.15);
  transition: all 0.3s ease;
}

.success-slider .swiper-button-next:hover,
.success-slider .swiper-button-prev:hover {
  background: var(--accent-color);
  color: white;
  transform: scale(1.1);
}

.success-slider .swiper-pagination-bullet {
  background: var(--accent-color);
  opacity: 0.3;
  transition: all 0.3s ease;
}

.success-slider .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}

/* Responsive Design für neue Sektionen */
@media (max-width: 768px) {
  .advantages-section {
    padding: 60px 0;
  }
  
  .advantages-title {
    font-size: 2.4rem;
  }
  
  .advantages-intro {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .advantage-card {
    padding: 2rem;
    border-radius: 16px;
  }
  
  .advantage-icon {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }
  
  .advantage-title-item {
    font-size: 1.2rem;
  }
  
  .advantages-image {
    height: 220px;
    border-radius: 12px;
  }
  
  .advantages-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem;
    margin-top: 3rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
  
  .success-section {
    padding: 60px 0;
  }
  
  .success-title {
    font-size: 2.4rem;
  }
  
  .success-intro {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }
  
  .testimonial-card {
    padding: 2rem;
    margin: 0.5rem;
    border-radius: 16px;
  }
  
  .testimonial-text {
    font-size: 1.1rem;
  }
  
  .testimonial-quote {
    width: 45px;
    height: 45px;
    font-size: 1.6rem;
    top: -12px;
    left: 25px;
  }
}

@media (max-width: 480px) {
  .advantages-stats {
    grid-template-columns: 1fr;
  }
  
  .advantage-card {
    padding: 1.5rem;
  }
  
  .advantages-image {
    height: 200px;
  }
  
  .tips-section {
    padding: 60px 0;
  }
  
  .tips-title {
    font-size: 2.4rem;
  }
  
  .tips-intro {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }
  
  .tips-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .tip-item {
    padding: 2rem;
    border-radius: 20px;
  }
  
  .tip-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
  
  .tip-title {
    font-size: 1.3rem;
  }
  
  .tip-description {
    font-size: 1rem;
  }
  
  .tips-cta {
    padding: 2rem;
    margin-top: 3rem;
  }
  
  .tips-cta h3 {
    font-size: 1.6rem;
  }
  
  .tips-cta p {
    font-size: 1.1rem;
  }
}
/* Moderne Tipps-Sektion mit neuer Farbpalette */
.tips-section {
  padding: 100px 0;
  background: rgba(248, 250, 252, 0.15);
  position: relative;
  overflow: hidden;
}


.tips-section .container {
  position: relative;
  z-index: 2;
}

.tips-title {
  color: #2d1b4e;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 3.2rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.tips-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #8b5cf6 0%, #10b981 100%);
  border-radius: 2px;
}

.tips-intro {
  font-family: var(--font-family);
  font-size: 1.3rem;
  color: var(--bg-primary);
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 400;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.tip-item {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(99, 102, 241, 0.1);
  border-radius: 24px;
  padding: 3rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.08);
}

.tip-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #8b5cf6 0%, #10b981 50%, #8b5cf6 100%);
  background-size: 200% 100%;
  animation: shimmer 4s ease-in-out infinite;
}

.tip-item::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.tip-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
  border-color: #8b5cf6;
}

.tip-item:hover::after {
  opacity: 1;
}

.tip-icon {
  background: linear-gradient(135deg, #8b5cf6 0%, #10b981 100%);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 2.2rem;
  position: relative;
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
}

.tip-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6, #10b981);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tip-item:hover .tip-icon::before {
  opacity: 1;
}

.tip-item:hover .tip-icon {
  transform: scale(1.1) rotate(5deg);
}

.tip-title {
  color: #2d1b4e;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.tip-description {
  color: #475569;
  font-family: var(--font-family);
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 400;
}

.tips-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
  border-radius: 20px;
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.tips-cta h3 {
  color: #2d1b4e;
  font-family: var(--font-family);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.tips-cta p {
  color: #475569;
  font-family: var(--font-family);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.tips-cta .btn {
  background: linear-gradient(135deg, #8b5cf6 0%, #10b981 100%);
  border: none;
  color: white;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.tips-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
}

/* Preise Sektion Styling */
.pricing-section {
  padding: 80px 0;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(10px);
}

.pricing-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.pricing-card {
  background: rgba(241, 245, 249, 0.8);
  backdrop-filter: blur(15px);
  border: 2px solid #f0f0f0;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  text-align: center;
}

.pricing-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(78, 21, 4, 0.15);
  transform: translateY(-5px);
}

.pricing-card.featured {
  border-color: var(--accent-color);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: 'POPULAIRE';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: white;
  padding: 5px 20px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.plan-name {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.plan-price {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.plan-period {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  text-align: left;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.plan-feature-icon {
  color: var(--accent-color);
  margin-right: 0.75rem;
  margin-top: 0.1rem;
  font-size: 1.2rem;
}

.plan-feature-text {
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.5;
  flex: 1;
}

.pricing-note {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-top: 3rem;
  text-align: center;
  color: var(--text-primary);
  font-size: 1rem;
  font-style: italic;
}

/* Responsive Design für neue Sektionen */
@media (max-width: 768px) {
  .tips-title, .pricing-title {
    font-size: 2rem;
  }
  
  .tips-image {
    height: 250px;
    margin-bottom: 1rem;
  }
  
  .tip-item {
    padding: 1.5rem;
  }
  
  .pricing-card {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .plan-price {
    font-size: 2rem;
  }
}
/* Modern Contact Section */
.contact-section {
  padding: 100px 0;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23f59e0b" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%231e40af" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23f59e0b" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%231e40af" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.contact-section .container {
  position: relative;
  z-index: 2;
}

.contact-title {
  color: var(--heading-color);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
}

.contact-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary) 100%);
  border-radius: 2px;
}

.contact-description {
  font-family: var(--font-family);
  font-size: 1.3rem;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 400;
}

.contact-info {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(107, 70, 193, 0.1);
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(107, 70, 193, 0.1);
}

.contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary) 50%, var(--accent-color) 100%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: -200% 0; }
}

.contact-info:hover {
  border-color: var(--accent-color);
  box-shadow: 0 30px 80px rgba(107, 70, 193, 0.15);
  transform: translateY(-8px);
}

.contact-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.form-container {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  max-width: 100%;
  margin: 0;
}

.form-floating {
  margin-bottom: 2rem;
  position: relative;
}

.form-floating .form-control {
  border: 2px solid rgba(107, 70, 193, 0.1);
  border-radius: 12px;
  padding: 1.2rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  font-family: var(--font-family-sans);
}

.form-floating .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.15);
  background: var(--white);
  transform: translateY(-2px);
}

.form-floating .form-control:focus ~ label {
  color: var(--accent-color);
  transform: translateY(-0.5rem) scale(0.9);
}

.form-floating label {
  color: var(--text-primary);
  display: flex;
  align-items: center;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: var(--font-family-sans);
}

.form-floating label .material-icons-outlined {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, #34d399 100%);
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-color) 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(107, 70, 193, 0.4);
}

.btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
}

.contact-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(107, 70, 193, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
  border-radius: 16px;
  border: 1px solid rgba(107, 70, 193, 0.1);
}

.contact-cta h4 {
  color: var(--heading-color);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.contact-cta p {
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Kontaktformular Sektion Styling */
.form-section {
  padding: 80px 0;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(10px);
}

.form-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.form-container {
  background: rgba(241, 245, 249, 0.8);
  backdrop-filter: blur(15px);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: 0 auto;
}

.form-floating {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-floating .form-control {
  border: 2px solid #f0f0f0;
  border-radius: var(--border-radius);
  padding: 1rem 0.75rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: transparent;
}

.form-floating .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(78, 21, 4, 0.15);
  background: transparent;
}

.form-floating .form-control:focus ~ label {
  color: var(--accent-color);
}

.form-floating label {
  color: var(--text-primary);
  display: flex;
  align-items: center;
  font-weight: 500;
  transition: all 0.3s ease;
}

.form-floating label .material-icons-outlined {
  color: var(--accent-color);
}

.error-message {
  color: var(--primary);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
  display: none;
}

.btn-primary {
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: white;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-1px);
}

.btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(78, 21, 4, 0.25);
}

/* Responsive pour les blocs finaux */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-title {
    font-size: 2.2rem;
  }
  
  .contact-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }
  
  .contact-info {
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
  }
  
  .form-container {
    padding: 0;
    margin: 0;
  }
  
  .form-floating {
    margin-bottom: 1.5rem;
  }
  
  .form-floating .form-control {
    padding: 1rem 0.8rem;
    font-size: 0.95rem;
  }
  
  .btn-primary {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
  }
  
  .contact-cta {
    padding: 1.5rem;
    margin-top: 2rem;
  }
  
  .contact-cta h4 {
    font-size: 1.1rem;
  }
  
  .contact-cta p {
    font-size: 0.9rem;
  }
}

.swiper-container {
  max-width: 1200px;
  margin: 0 auto;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.swiper-pagination {
  margin-top: 20px;
  text-align: center;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background-color: var(--heading-color);
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  opacity: 1;
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0514 0%, #1a0f2e 50%, #0a0514 100%);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(107, 70, 193, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 5, 20, 0.7);
  z-index: 0;
  pointer-events: none;
}

.hero-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  background: rgba(26, 15, 46, 0.3);
  backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(107, 70, 193, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: 50px;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease-out;
  box-shadow: 0 4px 15px rgba(107, 70, 193, 0.2);
}

.badge-text {
  color: #e9d5ff;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

/* Hero Title */
.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-family: 'Fira Sans Condensed', sans-serif;
  text-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.title-line[data-delay="0.2s"] {
  animation-delay: 0.2s;
}

.gradient-text {
  background: linear-gradient(135deg, #a78bfa 0%, #10b981 50%, #8b5cf6 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Description */
.hero-description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #d8b4fe;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
  max-width: 600px;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
  flex-wrap: wrap;
}

.hero-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  border: 2px solid transparent;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.primary-btn {
  background: linear-gradient(135deg, #6b46c1 0%, #10b981 100%);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(107, 70, 193, 0.4);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(107, 70, 193, 0.6);
  background: linear-gradient(135deg, #10b981 0%, #6b46c1 100%);
}

.secondary-btn {
  background: rgba(26, 15, 46, 0.5);
  color: #ffffff;
  border: 2px solid rgba(139, 92, 246, 0.6);
  backdrop-filter: blur(10px);
}

.secondary-btn:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
  color: #ffffff;
}

.btn-icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.hero-btn:hover .btn-icon {
  transform: translateX(5px);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.primary-btn:hover .btn-shine {
  left: 100%;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.8s forwards;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #8b5cf6 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Fira Sans Condensed', sans-serif;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #d8b4fe;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.5), transparent);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
  background: rgba(26, 15, 46, 0.3);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(16, 185, 129, 0.3));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 92, 246, 0.5);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.circle-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 10%;
  animation: float1 6s ease-in-out infinite;
}

.circle-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 15%;
  animation: float2 8s ease-in-out infinite;
}

.circle-3 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 20%;
  animation: float3 7s ease-in-out infinite;
}

.circle-4 {
  width: 100px;
  height: 100px;
  top: 30%;
  right: 30%;
  animation: float4 9s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(30px, -30px) rotate(180deg);
  }
}

@keyframes float2 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-25px, 25px) rotate(-180deg);
  }
}

@keyframes float3 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(20px, 20px) rotate(90deg);
  }
}

@keyframes float4 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-20px, -20px) rotate(-90deg);
  }
}

.hero-icon-container {
  position: relative;
  z-index: 2;
}

.hero-icon {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(107, 70, 193, 0.4), rgba(16, 185, 129, 0.4));
  border-radius: 50%;
  backdrop-filter: blur(20px);
  border: 2px solid rgba(139, 92, 246, 0.5);
  animation: iconPulse 3s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.4);
}

.hero-icon .material-icons-outlined {
  font-size: 100px;
  color: #ffffff;
  z-index: 3;
  animation: iconRotate 20s linear infinite;
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

.icon-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.6), transparent);
  animation: glowPulse 2s ease-in-out infinite;
}

.icon-ring {
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  border: 2px solid rgba(139, 92, 246, 0.5);
  animation: ringRotate 10s linear infinite;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.icon-ring::before {
  content: '';
  position: absolute;
  width: 140%;
  height: 140%;
  border-radius: 50%;
  border: 1px solid rgba(16, 185, 129, 0.4);
  animation: ringRotate 15s linear infinite reverse;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.5), 0 0 60px rgba(16, 185, 129, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(139, 92, 246, 0.7), 0 0 80px rgba(16, 185, 129, 0.5);
  }
}

@keyframes iconRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

@keyframes ringRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.7;
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 2;
}

.scroll-mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(139, 92, 246, 0.7);
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

.scroll-wheel {
  width: 4px;
  height: 10px;
  background: var(--accent-color);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

.scroll-text {
  font-size: 0.75rem;
  color: #d8b4fe;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

/* Responsive Hero */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-content {
    padding: 2.5rem;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-visual {
    height: 400px;
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
    min-height: auto;
  }
  
  .hero-content {
    padding: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .hero-visual {
    height: 300px;
    padding: 1rem;
  }
  
  .hero-icon {
    width: 150px;
    height: 150px;
  }
  
  .hero-icon .material-icons-outlined {
    font-size: 75px;
  }
}

/* Adjust for small screens */
@media (max-width: 767px) {
  .testimonial-card {
    padding: 20px;
  }

  .success-title {
    font-size: 30px;
  }
}

/* ============================================
   NEW MAIN BANNER SECTION STYLES
   ============================================ */

.main-banner {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #7a8112 0%, #1e293b 50%, #7a8112 100%);
}

.banner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.banner-pattern {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: patternFloat 20s ease-in-out infinite;
}

.pattern-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #6366f1, transparent);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.pattern-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #10b981, transparent);
  bottom: -150px;
  right: -150px;
  animation-delay: 5s;
}

.pattern-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #fbbf24, transparent);
  top: 50%;
  right: 10%;
  animation-delay: 10s;
}

@keyframes patternFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}

.banner-wrapper {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.banner-main-content {
  position: relative;
  z-index: 2;
}

.banner-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1.25rem;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 30px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.label-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
}

@keyframes dotPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.label-text {
  color: #cbd5e1;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.banner-heading {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.heading-part {
  display: block;
}

.heading-part-1 {
  color: #ffffff;
  text-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.heading-part-2 {
  background: linear-gradient(135deg, #6366f1 0%, #10b981 50%, #fbbf24 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: headingGradient 4s ease infinite;
}

@keyframes headingGradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.banner-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #94a3b8;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.banner-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.action-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.action-primary {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.action-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(99, 102, 241, 0.6);
}

.action-secondary {
  background: rgba(30, 41, 59, 0.6);
  color: #ffffff;
  border: 2px solid rgba(99, 102, 241, 0.5);
  backdrop-filter: blur(10px);
}

.action-secondary:hover {
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.8);
  transform: translateY(-3px);
}

.button-arrow,
.button-icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.action-button:hover .button-arrow {
  transform: translateX(5px);
}

.banner-side-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
}

.banner-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.decoration-element {
  position: absolute;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(16, 185, 129, 0.2));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.decoration-1 {
  width: 150px;
  height: 150px;
  top: 10%;
  left: 10%;
  animation: decorationFloat1 8s ease-in-out infinite;
}

.decoration-2 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  right: 15%;
  animation: decorationFloat2 10s ease-in-out infinite;
}

.decoration-3 {
  width: 80px;
  height: 80px;
  top: 50%;
  right: 10%;
  animation: decorationFloat3 7s ease-in-out infinite;
}

@keyframes decorationFloat1 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(30px, -30px) rotate(180deg);
  }
}

@keyframes decorationFloat2 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-25px, 25px) rotate(-180deg);
  }
}

@keyframes decorationFloat3 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(20px, 20px) rotate(90deg);
  }
}

.banner-image-wrapper {
  position: relative;
  z-index: 2;
}

.banner-image {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(16, 185, 129, 0.3));
  border-radius: 30px;
  backdrop-filter: blur(20px);
  border: 2px solid rgba(99, 102, 241, 0.4);
  animation: imagePulse 3s ease-in-out infinite;
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.banner-image .material-icons-outlined {
  font-size: 100px;
  color: #ffffff;
  z-index: 3;
  filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.5));
}

.image-aura {
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 30px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.4), transparent);
  animation: auraPulse 2s ease-in-out infinite;
}

.image-border {
  position: absolute;
  width: 140%;
  height: 140%;
  border-radius: 30px;
  border: 2px solid rgba(99, 102, 241, 0.3);
  animation: borderRotate 15s linear infinite;
}

@keyframes imagePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(99, 102, 241, 0.5);
  }
}

@keyframes auraPulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

@keyframes borderRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.banner-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.7;
  animation: hintBounce 2s ease-in-out infinite;
  z-index: 2;
}

.hint-line {
  width: 2px;
  height: 30px;
  background: linear-gradient(180deg, #6366f1, transparent);
  border-radius: 2px;
  animation: lineMove 2s ease-in-out infinite;
}

.hint-text {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@keyframes hintBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes lineMove {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

@media (max-width: 1024px) {
  .banner-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .banner-heading {
    font-size: 3.5rem;
  }
  
  .banner-side-content {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .main-banner {
    padding: 100px 0 60px;
    min-height: auto;
  }
  
  .banner-heading {
    font-size: 2.5rem;
  }
  
  .banner-text {
    font-size: 1.1rem;
  }
  
  .banner-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .action-button {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   NEW COURSES SHOWCASE SECTION STYLES
   ============================================ */
.courses-showcase {
 padding: 120px 0;
 background: linear-gradient(180deg, var(--light) 0%, var(--bg-primary) 50%, var(--light) 100%);
 position: relative;
 overflow: hidden;
}

.courses-showcase::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: 
  radial-gradient(circle at 20% 30%, rgba(252, 211, 77, 0.5) 0%, transparent 50%),
  radial-gradient(circle at 80% 70%, rgba(255, 237, 189, 0.4) 0%, transparent 50%);
 z-index: 0;
 pointer-events: none;
}

.showcase-intro {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.showcase-heading {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Fira Sans Condensed', sans-serif;
  background: linear-gradient(135deg, #6366f1 0%, #10b981 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.showcase-subheading {
  font-size: 1.2rem;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.course-card {
  position: relative;
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #10b981, #fbbf24);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.course-card:hover {
  transform: translateY(-10px);
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
}

.course-card:hover::before {
  transform: scaleX(1);
}

.course-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.number-text {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #6366f1, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Fira Sans Condensed', sans-serif;
  opacity: 0.3;
}

.number-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, transparent);
  border-radius: 2px;
}

.course-icon-box {
  margin-bottom: 2rem;
}

.icon-box-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(16, 185, 129, 0.3));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(99, 102, 241, 0.4);
  transition: all 0.3s ease;
}

.course-card:hover .icon-box-wrapper {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.icon-box-wrapper .material-icons-outlined {
  font-size: 40px;
  color: #ffffff;
  z-index: 2;
}

.icon-box-shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.course-card:hover .icon-box-shadow {
  opacity: 1;
}

.course-content {
  position: relative;
  z-index: 1;
}

.course-header {
  margin-bottom: 1.5rem;
}

.course-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.course-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.4);
  border-radius: 20px;
  color: #818cf8;
  font-size: 0.875rem;
  font-weight: 500;
}

.course-body {
  margin-bottom: 2rem;
}

.course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tag-item {
  padding: 0.375rem 0.875rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 15px;
  color: #34d399;
  font-size: 0.8125rem;
  font-weight: 500;
}

.course-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.course-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #94a3b8;
  font-size: 0.9375rem;
}

.benefit-item .material-icons-outlined {
  font-size: 20px;
  color: #6366f1;
}

.course-footer {
  margin-top: 2rem;
}

.course-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.4);
  border-radius: 10px;
  color: #818cf8;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.course-button:hover {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #ffffff;
  border-color: transparent;
  transform: translateX(5px);
}

.course-button .material-icons-outlined {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.course-button:hover .material-icons-outlined {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .courses-showcase {
    padding: 80px 0;
  }
  
  .showcase-heading {
    font-size: 2.5rem;
  }
  
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .course-card {
    padding: 2rem;
  }
}

/* ============================================
   NEW BENEFITS SECTION STYLES
   ============================================ */

.benefits-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #1e293b 0%, #7a8112 50%, #1e293b 100%);
}

.benefits-background-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.benefits-pattern {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  opacity: 0.08;
  filter: blur(60px);
  animation: benefitsPatternMove 25s ease-in-out infinite;
}

.benefits-pattern-top {
  background: radial-gradient(circle, #6366f1, transparent);
  top: -300px;
  left: -300px;
  animation-delay: 0s;
}

.benefits-pattern-bottom {
  background: radial-gradient(circle, #10b981, transparent);
  bottom: -300px;
  right: -300px;
  animation-delay: 10s;
}

@keyframes benefitsPatternMove {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(100px, -100px) scale(1.2);
  }
}

.benefits-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.benefits-header {
  text-align: center;
  margin-bottom: 5rem;
}

.benefits-main-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Fira Sans Condensed', sans-serif;
  background: linear-gradient(135deg, #6366f1 0%, #10b981 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: benefitsTitleGradient 5s ease infinite;
}

@keyframes benefitsTitleGradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.benefits-intro-text {
  font-size: 1.2rem;
  color: #94a3b8;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.benefits-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.benefit-card {
  position: relative;
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #10b981, #fbbf24);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card-inner {
  position: relative;
  z-index: 1;
}

.benefit-icon-container {
  margin-bottom: 1.5rem;
}

.benefit-icon-frame {
  position: relative;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(16, 185, 129, 0.2));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon-frame {
  transform: rotate(5deg) scale(1.1);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), rgba(16, 185, 129, 0.4));
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.benefit-icon-frame .material-icons-outlined {
  font-size: 36px;
  color: #818cf8;
  z-index: 2;
  transition: color 0.3s ease;
}

.benefit-card:hover .benefit-icon-frame .material-icons-outlined {
  color: #ffffff;
}

.icon-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover .icon-backdrop {
  opacity: 1;
}

.benefit-card-body {
  position: relative;
  z-index: 1;
}

.benefit-card-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.benefit-card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #cbd5e1;
}

.benefit-card-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1), transparent);
  border-radius: 50% 0 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover .benefit-card-accent {
  opacity: 1;
}

.benefits-cta-block {
  margin-top: 4rem;
  text-align: center;
}

.cta-block-content {
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(99, 102, 241, 0.3);
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.cta-block-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.cta-block-description {
  font-size: 1.1rem;
  color: #94a3b8;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-block-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  font-family: 'Fira Sans Condensed', sans-serif;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.cta-block-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(99, 102, 241, 0.6);
}

.cta-button-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.cta-block-button:hover .cta-button-arrow {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .benefits-section {
    padding: 80px 0;
  }
  
  .benefits-main-title {
    font-size: 2.5rem;
  }
  
  .benefits-cards-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .benefit-card {
    padding: 2rem;
  }
  
  .cta-block-content {
    padding: 2rem;
  }
}

/* ============================================
   NEW FEATURES SECTION STYLES
   ============================================ */

.features-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #7a8112 0%, #1e293b 50%, #7a8112 100%);
}

.features-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.features-gradient {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  animation: featuresGradientFloat 20s ease-in-out infinite;
}

.features-gradient-1 {
  background: radial-gradient(circle, #6366f1, transparent);
  top: 10%;
  left: -250px;
  animation-delay: 0s;
}

.features-gradient-2 {
  background: radial-gradient(circle, #10b981, transparent);
  bottom: 10%;
  right: -250px;
  animation-delay: 10s;
}

@keyframes featuresGradientFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(50px, -50px) scale(1.1);
  }
}

.features-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.features-header-section {
  text-align: center;
  margin-bottom: 5rem;
}

.features-main-heading {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Fira Sans Condensed', sans-serif;
  background: linear-gradient(135deg, #6366f1 0%, #10b981 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-subheading-text {
  font-size: 1.2rem;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(6, auto);
  gap: 1.5rem;
}

.feature-block {
  position: relative;
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.feature-block:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.feature-block-wrapper {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.feature-block-highlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #10b981, #fbbf24);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-block:hover .feature-block-highlight {
  transform: scaleX(1);
}

/* Primary Feature Block */
.feature-block-primary {
  grid-column: 1 / 8;
  grid-row: 1 / 4;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(16, 185, 129, 0.15));
}

/* Secondary Feature Blocks */
.feature-block-secondary {
  grid-column: 8 / 13;
  grid-row: span 2;
}

.feature-block-secondary:nth-of-type(2) {
  grid-row: 1 / 3;
}

.feature-block-secondary:nth-of-type(3) {
  grid-row: 3 / 5;
}


.feature-block-header {
  margin-bottom: 1.5rem;
}

.feature-icon-wrapper {
  margin-bottom: 1rem;
}

.feature-icon-circle {
  position: relative;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(16, 185, 129, 0.3));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(99, 102, 241, 0.4);
  transition: all 0.3s ease;
}

.feature-block:hover .feature-icon-circle {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.feature-icon-circle .material-icons-outlined {
  font-size: 28px;
  color: #818cf8;
  z-index: 2;
  transition: color 0.3s ease;
}

.feature-block:hover .feature-icon-circle .material-icons-outlined {
  color: #ffffff;
}

.icon-glow-effect {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-block:hover .icon-glow-effect {
  opacity: 1;
}

.feature-block-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: 'Fira Sans Condensed', sans-serif;
  line-height: 1.3;
}

.feature-block-content {
  flex: 1;
  margin-bottom: 1.5rem;
}

.feature-block-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #cbd5e1;
}

.feature-block-footer {
  margin-top: auto;
}

.feature-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.4);
  border-radius: 10px;
  color: #818cf8;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.feature-action-btn:hover {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #ffffff;
  border-color: transparent;
  transform: translateX(5px);
}

.action-btn-icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.feature-action-btn:hover .action-btn-icon {
  transform: translateX(5px);
}

/* Responsive Features Layout */
@media (max-width: 1200px) {
  .features-layout {
    grid-template-columns: repeat(8, 1fr);
  }
  
  .feature-block-primary {
    grid-column: 1 / 5;
    grid-row: 1 / 4;
  }
  
  .feature-block-secondary {
    grid-column: 5 / 9;
  }
  
}

@media (max-width: 768px) {
  .features-section {
    padding: 80px 0;
  }
  
  .features-main-heading {
    font-size: 2.5rem;
  }
  
  .features-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  .feature-block-primary,
  .feature-block-secondary {
    grid-column: 1;
    grid-row: auto;
  }
  
  .feature-block-wrapper {
    padding: 1.5rem;
  }
}

/* ============================================
   NEW TESTIMONIALS SECTION STYLES
   ============================================ */

.testimonials-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #7a8112 0%, #1e293b 50%, #7a8112 100%);
}

.testimonials-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.testimonials-shape {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
  animation: testimonialsShapeFloat 20s ease-in-out infinite;
}

.testimonials-shape-1 {
  background: radial-gradient(circle, #6366f1, transparent);
  top: 10%;
  left: -200px;
  animation-delay: 0s;
}

.testimonials-shape-2 {
  background: radial-gradient(circle, #10b981, transparent);
  bottom: 10%;
  right: -200px;
  animation-delay: 10s;
}

@keyframes testimonialsShapeFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(50px, -50px) scale(1.2);
  }
}

.testimonials-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.testimonials-header-block {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-main-heading {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Fira Sans Condensed', sans-serif;
  background: linear-gradient(135deg, #6366f1 0%, #10b981 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonials-intro-paragraph {
  font-size: 1.2rem;
  color: #94a3b8;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.testimonials-slider {
  padding: 2rem 0;
  position: relative;
}

.testimonial-item {
  position: relative;
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 3rem;
  margin: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.testimonial-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #10b981, #fbbf24);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonial-item:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
}

.testimonial-item:hover::before {
  transform: scaleX(1);
}

.testimonial-item-content {
  position: relative;
  z-index: 1;
}

.testimonial-quote-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(16, 185, 129, 0.3));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.testimonial-quote-icon .material-icons-outlined {
  font-size: 32px;
  color: #818cf8;
}

.testimonial-item-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-item-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(16, 185, 129, 0.3));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.author-avatar .material-icons-outlined {
  font-size: 24px;
  color: #818cf8;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.author-role {
  font-size: 0.9rem;
  color: #94a3b8;
}

.testimonial-item-decoration {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1), transparent);
  border-radius: 50% 0 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-item:hover .testimonial-item-decoration {
  opacity: 1;
}

.testimonials-pagination {
  margin-top: 2rem;
  position: relative;
}

.testimonials-pagination .swiper-pagination-bullet {
  background: rgba(99, 102, 241, 0.5);
  opacity: 0.5;
  transition: all 0.3s ease;
  width: 12px;
  height: 12px;
}

.testimonials-pagination .swiper-pagination-bullet-active {
  background: #6366f1;
  opacity: 1;
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 80px 0;
  }
  
  .testimonials-main-heading {
    font-size: 2.5rem;
  }
  
  .testimonial-item {
    padding: 2rem;
    margin: 0.5rem;
  }
  
  .testimonial-item-text {
    font-size: 1rem;
  }
}

/* ============================================
   NEW SITE FOOTER STYLES
   ============================================ */

.site-footer {
  position: relative;
  background: linear-gradient(180deg, #7a8112 0%, #1e293b 50%, #7a8112 100%);
  padding: 80px 0 40px;
  overflow: hidden;
}

.footer-background-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.footer-pattern {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.08;
  animation: footerPatternFloat 25s ease-in-out infinite;
}

.footer-pattern-left {
  background: radial-gradient(circle, #6366f1, transparent);
  top: -250px;
  left: -250px;
  animation-delay: 0s;
}

.footer-pattern-right {
  background: radial-gradient(circle, #10b981, transparent);
  bottom: -250px;
  right: -250px;
  animation-delay: 12s;
}

@keyframes footerPatternFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

.footer-main-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column {
  position: relative;
}

.footer-column-brand {
  max-width: 500px;
}

.footer-brand-section {
  position: relative;
}

.footer-logo-link {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.footer-logo-link:hover {
  transform: translateX(5px);
}

.footer-logo-text {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #6366f1, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.footer-brand-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #94a3b8;
  margin: 0;
}

.footer-column-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(99, 102, 241, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.contact-item-icon .material-icons-outlined {
  font-size: 20px;
  color: #818cf8;
}

.contact-item-link {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item-link:hover {
  color: #818cf8;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.footer-link-item:hover {
  color: #818cf8;
  transform: translateX(5px);
}

.link-item-icon {
  display: flex;
  align-items: center;
}

.link-item-icon .material-icons-outlined {
  font-size: 18px;
}

.link-item-text {
  font-size: 0.95rem;
}

.footer-bottom-section {
  margin-top: 3rem;
  padding-top: 2rem;
}

.footer-bottom-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
  margin-bottom: 2rem;
}

.footer-bottom-content {
  text-align: center;
}

.footer-copyright-text {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 0.75rem;
}

.footer-disclaimer-text {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 992px) {
  .footer-content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-column-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 60px 0 30px;
  }
  
  .footer-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-brand-description {
    font-size: 0.9rem;
  }
}

/* ============================================
   NEW COMPANY INTRO SECTION STYLES (ABOUT PAGE)
   ============================================ */

.company-intro-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #1e293b 0%, #7a8112 50%, #1e293b 100%);
}

.intro-background-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.intro-pattern {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(70px);
  animation: introPatternFloat 20s ease-in-out infinite;
}

.intro-pattern-top {
  background: radial-gradient(circle, #6366f1, transparent);
  top: -250px;
  left: -250px;
  animation-delay: 0s;
}

.intro-pattern-bottom {
  background: radial-gradient(circle, #10b981, transparent);
  bottom: -250px;
  right: -250px;
  animation-delay: 10s;
}

@keyframes introPatternFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(80px, -80px) scale(1.2);
  }
}

.intro-main-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.intro-content-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-text-column {
  position: relative;
}

.intro-header-block {
  margin-bottom: 3rem;
}

.intro-main-heading {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Fira Sans Condensed', sans-serif;
  background: linear-gradient(135deg, #6366f1 0%, #10b981 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.intro-description-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #94a3b8;
}

.intro-approach-section {
  margin-top: 3rem;
}

.approach-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 2rem;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.approach-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.approach-list-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.approach-icon-wrapper {
  flex-shrink: 0;
}

.approach-icon-box {
  position: relative;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(16, 185, 129, 0.3));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(99, 102, 241, 0.4);
  transition: all 0.3s ease;
}

.approach-list-item:hover .approach-icon-box {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.approach-icon-box .material-icons-outlined {
  font-size: 28px;
  color: #818cf8;
  z-index: 2;
  transition: color 0.3s ease;
}

.approach-list-item:hover .approach-icon-box .material-icons-outlined {
  color: #ffffff;
}

.icon-glow-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.approach-list-item:hover .icon-glow-ring {
  opacity: 1;
}

.approach-content-block {
  flex: 1;
}

.approach-item-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.approach-item-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #cbd5e1;
}

.intro-image-column {
  position: relative;
}

.intro-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.intro-main-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.intro-image-wrapper:hover .intro-main-image {
  transform: scale(1.05);
}

.image-decoration-frame {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid rgba(99, 102, 241, 0.3);
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.intro-image-wrapper:hover .image-decoration-frame {
  opacity: 1;
}

.image-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(16, 185, 129, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.intro-image-wrapper:hover .image-overlay-gradient {
  opacity: 1;
}

@media (max-width: 992px) {
  .intro-content-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .intro-image-column {
    order: -1;
  }
}

@media (max-width: 768px) {
  .company-intro-section {
    padding: 80px 0;
  }
  
  .intro-main-heading {
    font-size: 2.5rem;
  }
  
  .intro-description-text {
    font-size: 1.1rem;
  }
  
  .approach-list-item {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ============================================
   NEW VALUES PRINCIPLES SECTION STYLES (ABOUT PAGE)
   ============================================ */

.values-principles-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #7a8112 0%, #1e293b 50%, #7a8112 100%);
}

.values-background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.values-gradient {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.12;
  animation: valuesGradientFloat 25s ease-in-out infinite;
}

.values-gradient-left {
  background: radial-gradient(circle, #6366f1, transparent);
  top: 10%;
  left: -300px;
  animation-delay: 0s;
}

.values-gradient-right {
  background: radial-gradient(circle, #10b981, transparent);
  bottom: 10%;
  right: -300px;
  animation-delay: 12s;
}

@keyframes valuesGradientFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(60px, -60px) scale(1.15);
  }
}

.values-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.values-header-section {
  text-align: center;
  margin-bottom: 5rem;
}

.values-main-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Fira Sans Condensed', sans-serif;
  background: linear-gradient(135deg, #6366f1 0%, #10b981 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.values-intro-text {
  font-size: 1.2rem;
  color: #94a3b8;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.values-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card {
  position: relative;
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #10b981, #fbbf24);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card-inner {
  position: relative;
  z-index: 1;
}

.value-icon-container {
  margin-bottom: 1.5rem;
}

.value-icon-frame {
  position: relative;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(16, 185, 129, 0.2));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
}

.value-card:hover .value-icon-frame {
  transform: rotate(5deg) scale(1.1);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), rgba(16, 185, 129, 0.4));
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.value-icon-frame .material-icons-outlined {
  font-size: 36px;
  color: #818cf8;
  z-index: 2;
  transition: color 0.3s ease;
}

.value-card:hover .value-icon-frame .material-icons-outlined {
  color: #ffffff;
}

.value-icon-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-card:hover .value-icon-backdrop {
  opacity: 1;
}

.value-card-body {
  position: relative;
  z-index: 1;
}

.value-card-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.value-card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #cbd5e1;
}

.value-card-accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-card:hover .value-card-accent-line {
  opacity: 1;
}

@media (max-width: 768px) {
  .values-principles-section {
    padding: 80px 0;
  }
  
  .values-main-title {
    font-size: 2.5rem;
  }
  
  .values-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .value-card {
    padding: 2rem;
  }
}

/* ============================================
   NEW TEAM SECTION STYLES (ABOUT PAGE)
   ============================================ */

.team-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #1e293b 0%, #7a8112 50%, #1e293b 100%);
}

.team-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.team-shape {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
  animation: teamShapeFloat 20s ease-in-out infinite;
}

.team-shape-1 {
  background: radial-gradient(circle, #6366f1, transparent);
  top: 10%;
  left: -200px;
  animation-delay: 0s;
}

.team-shape-2 {
  background: radial-gradient(circle, #10b981, transparent);
  bottom: 10%;
  right: -200px;
  animation-delay: 10s;
}

@keyframes teamShapeFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(50px, -50px) scale(1.2);
  }
}

.team-main-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.team-header-block {
  text-align: center;
  margin-bottom: 5rem;
}

.team-main-heading {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Fira Sans Condensed', sans-serif;
  background: linear-gradient(135deg, #6366f1 0%, #10b981 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team-intro-description {
  font-size: 1.2rem;
  color: #94a3b8;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.team-cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.team-member-card {
  position: relative;
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.team-member-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #10b981, #fbbf24);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.team-member-card:hover {
  transform: translateY(-10px);
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
}

.team-member-card:hover::before {
  transform: scaleX(1);
}

.team-card-wrapper {
  position: relative;
  z-index: 1;
}

.team-icon-section {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.team-icon-circle {
  position: relative;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(16, 185, 129, 0.3));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(99, 102, 241, 0.4);
  transition: all 0.3s ease;
}

.team-member-card:hover .team-icon-circle {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.team-icon-circle .material-icons-outlined {
  font-size: 48px;
  color: #818cf8;
  z-index: 2;
  transition: color 0.3s ease;
}

.team-member-card:hover .team-icon-circle .material-icons-outlined {
  color: #ffffff;
}

.team-icon-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-member-card:hover .team-icon-glow {
  opacity: 1;
}

.team-card-content {
  position: relative;
  z-index: 1;
}

.team-member-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.team-member-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #cbd5e1;
}

.team-card-highlight {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1), transparent);
  border-radius: 50% 0 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-member-card:hover .team-card-highlight {
  opacity: 1;
}

@media (max-width: 768px) {
  .team-section {
    padding: 80px 0;
  }
  
  .team-main-heading {
    font-size: 2.5rem;
  }
  
  .team-cards-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .team-member-card {
    padding: 2rem;
  }
}

/* ============================================
   NEW CONTACT FORM SECTION STYLES (CONTACT PAGE)
   ============================================ */

.contact-form-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #7a8112 0%, #1e293b 50%, #7a8112 100%);
}

.form-section-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.form-pattern {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(80px);
  animation: formPatternFloat 20s ease-in-out infinite;
}

.form-pattern-left {
  background: radial-gradient(circle, #6366f1, transparent);
  top: -250px;
  left: -250px;
  animation-delay: 0s;
}

.form-pattern-right {
  background: radial-gradient(circle, #10b981, transparent);
  bottom: -250px;
  right: -250px;
  animation-delay: 10s;
}

@keyframes formPatternFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(60px, -60px) scale(1.2);
  }
}

.form-section-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.form-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.form-section-heading {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Fira Sans Condensed', sans-serif;
  background: linear-gradient(135deg, #6366f1 0%, #10b981 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-section-description {
  font-size: 1.2rem;
  color: #94a3b8;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.form-wrapper-block {
  position: relative;
}

.form-container-box {
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.form-content-area {
  position: relative;
}

.contact-form-element {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-field-group {
  position: relative;
}

.form-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon-container {
  position: absolute;
  left: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
}

.input-icon-container .material-icons-outlined {
  font-size: 20px;
  color: #818cf8;
  transition: color 0.3s ease;
}

.form-input-field {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  font-family: 'Fira Sans Condensed', sans-serif;
  transition: all 0.3s ease;
}

.form-input-field:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
  background: rgba(15, 23, 42, 0.8);
}

.form-input-field:focus + .form-input-label,
.form-input-field:not(:placeholder-shown) + .form-input-label {
  transform: translateY(-1.5rem) scale(0.85);
  color: #818cf8;
}

.form-input-field:focus ~ .input-icon-container .material-icons-outlined {
  color: #6366f1;
}

.form-input-label {
  position: absolute;
  left: 3rem;
  top: 1rem;
  color: #94a3b8;
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.3s ease;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.form-error-text {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}

.form-error-text:not(:empty) {
  display: block;
}

.form-submit-wrapper {
  margin-top: 1rem;
}

.form-submit-button {
  width: 100%;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Fira Sans Condensed', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.form-submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(99, 102, 241, 0.6);
}

.submit-button-icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.form-submit-button:hover .submit-button-icon {
  transform: translateX(5px);
}

.form-cta-block {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(99, 102, 241, 0.2);
  text-align: center;
}

.cta-block-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.cta-block-text {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 80px 0;
  }
  
  .form-section-heading {
    font-size: 2.5rem;
  }
  
  .form-container-box {
    padding: 2rem;
  }
}

/* ============================================
   NEW CONTACT METHODS SECTION STYLES (CONTACT PAGE)
   ============================================ */

.contact-methods-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #1e293b 0%, #7a8112 50%, #1e293b 100%);
}

.methods-background-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.methods-gradient {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.12;
  animation: methodsGradientFloat 25s ease-in-out infinite;
}

.methods-gradient-top {
  background: radial-gradient(circle, #6366f1, transparent);
  top: -300px;
  left: -300px;
  animation-delay: 0s;
}

.methods-gradient-bottom {
  background: radial-gradient(circle, #10b981, transparent);
  bottom: -300px;
  right: -300px;
  animation-delay: 12s;
}

@keyframes methodsGradientFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(80px, -80px) scale(1.15);
  }
}

.methods-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.methods-header-block {
  text-align: center;
  margin-bottom: 5rem;
}

.methods-main-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Fira Sans Condensed', sans-serif;
  background: linear-gradient(135deg, #6366f1 0%, #10b981 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.methods-intro-text {
  font-size: 1.2rem;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.methods-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.method-card {
  position: relative;
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #10b981, #fbbf24);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.method-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
}

.method-card:hover::before {
  transform: scaleX(1);
}

.method-card-inner {
  position: relative;
  z-index: 1;
}

.method-icon-wrapper {
  margin-bottom: 1.5rem;
}

.method-icon-box {
  position: relative;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(16, 185, 129, 0.2));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
}

.method-card:hover .method-icon-box {
  transform: rotate(5deg) scale(1.1);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), rgba(16, 185, 129, 0.4));
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.method-icon-box .material-icons-outlined {
  font-size: 36px;
  color: #818cf8;
  z-index: 2;
  transition: color 0.3s ease;
}

.method-card:hover .method-icon-box .material-icons-outlined {
  color: #ffffff;
}

.method-icon-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.method-card:hover .method-icon-glow {
  opacity: 1;
}

.method-card-content {
  position: relative;
  z-index: 1;
}

.method-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.method-card-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #cbd5e1;
}

.method-card-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1), transparent);
  border-radius: 50% 0 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.method-card:hover .method-card-accent {
  opacity: 1;
}

@media (max-width: 768px) {
  .contact-methods-section {
    padding: 80px 0;
  }
  
  .methods-main-title {
    font-size: 2.5rem;
  }
  
  .methods-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .method-card {
    padding: 2rem;
  }
}

/* ============================================
   NEW CONTACT FAQ SECTION STYLES (CONTACT PAGE)
   ============================================ */

.contact-faq-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #7a8112 0%, #1e293b 50%, #7a8112 100%);
}

.faq-background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.faq-shape {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
  animation: faqShapeFloat 20s ease-in-out infinite;
}

.faq-shape-1 {
  background: radial-gradient(circle, #6366f1, transparent);
  top: 10%;
  left: -200px;
  animation-delay: 0s;
}

.faq-shape-2 {
  background: radial-gradient(circle, #10b981, transparent);
  bottom: 10%;
  right: -200px;
  animation-delay: 10s;
}

@keyframes faqShapeFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(50px, -50px) scale(1.2);
  }
}

.faq-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-header-section {
  text-align: center;
  margin-bottom: 5rem;
}

.faq-main-heading {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: 'Fira Sans Condensed', sans-serif;
  background: linear-gradient(135deg, #6366f1 0%, #10b981 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faq-item-card {
  position: relative;
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.faq-item-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #10b981, #fbbf24);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.faq-item-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
}

.faq-item-card:hover::before {
  transform: scaleX(1);
}

.faq-card-wrapper {
  position: relative;
  z-index: 1;
}

.faq-icon-section {
  margin-bottom: 1.5rem;
}

.faq-icon-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(16, 185, 129, 0.3));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(99, 102, 241, 0.4);
  transition: all 0.3s ease;
}

.faq-item-card:hover .faq-icon-circle {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.faq-icon-circle .material-icons-outlined {
  font-size: 28px;
  color: #818cf8;
  transition: color 0.3s ease;
}

.faq-item-card:hover .faq-icon-circle .material-icons-outlined {
  color: #ffffff;
}

.faq-card-body {
  position: relative;
  z-index: 1;
}

.faq-item-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: 'Fira Sans Condensed', sans-serif;
  line-height: 1.4;
}

.faq-item-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #cbd5e1;
}

.faq-card-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item-card:hover .faq-card-border {
  opacity: 1;
}

@media (max-width: 768px) {
  .contact-faq-section {
    padding: 80px 0;
  }
  
  .faq-main-heading {
    font-size: 2.5rem;
  }
  
  .faq-items-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .faq-item-card {
    padding: 2rem;
  }
}

/* ============================================
   NEW FAQ MAIN SECTION STYLES (FAQ PAGE)
   ============================================ */

.faq-main-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #7a8112 0%, #1e293b 50%, #7a8112 100%);
}

.faq-main-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.faq-main-pattern {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(80px);
  animation: faqMainPatternFloat 20s ease-in-out infinite;
}

.faq-main-pattern-1 {
  background: radial-gradient(circle, #6366f1, transparent);
  top: -250px;
  left: -250px;
  animation-delay: 0s;
}

.faq-main-pattern-2 {
  background: radial-gradient(circle, #10b981, transparent);
  bottom: -250px;
  right: -250px;
  animation-delay: 10s;
}

@keyframes faqMainPatternFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(60px, -60px) scale(1.2);
  }
}

.faq-main-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-main-header {
  text-align: center;
  margin-bottom: 5rem;
}

.faq-main-heading {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Fira Sans Condensed', sans-serif;
  background: linear-gradient(135deg, #6366f1 0%, #10b981 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-main-intro {
  font-size: 1.2rem;
  color: #94a3b8;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.faq-main-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.faq-main-card {
  position: relative;
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.faq-main-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #10b981, #fbbf24);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.faq-main-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
}

.faq-main-card:hover::before {
  transform: scaleX(1);
}

.faq-main-card-inner {
  position: relative;
  z-index: 1;
}

.faq-main-icon-wrapper {
  margin-bottom: 1.5rem;
}

.faq-main-icon-frame {
  position: relative;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(16, 185, 129, 0.2));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
}

.faq-main-card:hover .faq-main-icon-frame {
  transform: rotate(5deg) scale(1.1);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), rgba(16, 185, 129, 0.4));
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.faq-main-icon-frame .material-icons-outlined {
  font-size: 36px;
  color: #818cf8;
  z-index: 2;
  transition: color 0.3s ease;
}

.faq-main-card:hover .faq-main-icon-frame .material-icons-outlined {
  color: #ffffff;
}

.faq-main-icon-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-main-card:hover .faq-main-icon-backdrop {
  opacity: 1;
}

.faq-main-card-body {
  position: relative;
  z-index: 1;
}

.faq-main-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.faq-main-card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #cbd5e1;
}

.faq-main-card-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1), transparent);
  border-radius: 50% 0 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-main-card:hover .faq-main-card-accent {
  opacity: 1;
}

@media (max-width: 768px) {
  .faq-main-section {
    padding: 80px 0;
  }
  
  .faq-main-heading {
    font-size: 2.5rem;
  }
  
  .faq-main-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .faq-main-card {
    padding: 2rem;
  }
}

/* ============================================
   NEW FAQ ADDITIONAL SECTION STYLES (FAQ PAGE)
   ============================================ */

.faq-additional-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #1e293b 0%, #7a8112 50%, #1e293b 100%);
}

.faq-additional-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.faq-additional-gradient {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.12;
  animation: faqAdditionalGradientFloat 25s ease-in-out infinite;
}

.faq-additional-gradient-1 {
  background: radial-gradient(circle, #6366f1, transparent);
  top: -300px;
  left: -300px;
  animation-delay: 0s;
}

.faq-additional-gradient-2 {
  background: radial-gradient(circle, #10b981, transparent);
  bottom: -300px;
  right: -300px;
  animation-delay: 12s;
}

@keyframes faqAdditionalGradientFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(80px, -80px) scale(1.15);
  }
}

.faq-additional-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-additional-header {
  text-align: center;
  margin-bottom: 5rem;
}

.faq-additional-heading {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: 'Fira Sans Condensed', sans-serif;
  background: linear-gradient(135deg, #6366f1 0%, #10b981 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-additional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faq-additional-item {
  position: relative;
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.faq-additional-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #10b981, #fbbf24);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.faq-additional-item:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
}

.faq-additional-item:hover::before {
  transform: scaleX(1);
}

.faq-additional-item-wrapper {
  position: relative;
  z-index: 1;
}

.faq-additional-icon-box {
  margin-bottom: 1.5rem;
}

.faq-additional-icon-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(16, 185, 129, 0.3));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(99, 102, 241, 0.4);
  transition: all 0.3s ease;
}

.faq-additional-item:hover .faq-additional-icon-circle {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.faq-additional-icon-circle .material-icons-outlined {
  font-size: 28px;
  color: #818cf8;
  transition: color 0.3s ease;
}

.faq-additional-item:hover .faq-additional-icon-circle .material-icons-outlined {
  color: #ffffff;
}

.faq-additional-content {
  position: relative;
  z-index: 1;
}

.faq-additional-item-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: 'Fira Sans Condensed', sans-serif;
  line-height: 1.4;
}

.faq-additional-item-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #cbd5e1;
}

.faq-additional-item-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-additional-item:hover .faq-additional-item-border {
  opacity: 1;
}

@media (max-width: 768px) {
  .faq-additional-section {
    padding: 80px 0;
  }
  
  .faq-additional-heading {
    font-size: 2.5rem;
  }
  
  .faq-additional-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .faq-additional-item {
    padding: 2rem;
  }
}

/* ============================================
   NEW FAQ CTA SECTION STYLES (FAQ PAGE)
   ============================================ */

.faq-cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #7a8112 0%, #1e293b 50%, #7a8112 100%);
}

.faq-cta-background-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.faq-cta-shape {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
  animation: faqCtaShapeFloat 20s ease-in-out infinite;
}

.faq-cta-shape-1 {
  background: radial-gradient(circle, #6366f1, transparent);
  top: 10%;
  left: -200px;
  animation-delay: 0s;
}

.faq-cta-shape-2 {
  background: radial-gradient(circle, #10b981, transparent);
  bottom: 10%;
  right: -200px;
  animation-delay: 10s;
}

@keyframes faqCtaShapeFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(50px, -50px) scale(1.2);
  }
}

.faq-cta-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-cta-content-block {
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(99, 102, 241, 0.3);
  padding: 4rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.faq-cta-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.faq-cta-text {
  font-size: 1.2rem;
  color: #94a3b8;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.faq-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  font-family: 'Fira Sans Condensed', sans-serif;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.faq-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(99, 102, 241, 0.6);
}

.cta-button-label {
  font-weight: 600;
}

.cta-button-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.faq-cta-button:hover .cta-button-arrow {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .faq-cta-section {
    padding: 80px 0;
  }
  
  .faq-cta-content-block {
    padding: 3rem 2rem;
  }
  
  .faq-cta-heading {
    font-size: 2rem;
  }
  
  .faq-cta-text {
    font-size: 1.1rem;
  }
}

/* ============================================
   NEW SERVICES HERO SECTION STYLES (SERVICE PAGE)
   ============================================ */

.services-hero-section {
  padding: 150px 0 120px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #7a8112 0%, #1e293b 50%, #7a8112 100%);
}

.services-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.services-hero-pattern {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(90px);
  animation: servicesHeroPatternFloat 20s ease-in-out infinite;
}

.services-hero-pattern-1 {
  background: radial-gradient(circle, #6366f1, transparent);
  top: -300px;
  left: -300px;
  animation-delay: 0s;
}

.services-hero-pattern-2 {
  background: radial-gradient(circle, #10b981, transparent);
  bottom: -300px;
  right: -300px;
  animation-delay: 10s;
}

@keyframes servicesHeroPatternFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(70px, -70px) scale(1.2);
  }
}

.services-hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.services-hero-content {
  text-align: center;
}

.services-hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  font-family: 'Fira Sans Condensed', sans-serif;
  background: linear-gradient(135deg, #6366f1 0%, #10b981 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-hero-description {
  font-size: 1.3rem;
  color: #94a3b8;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .services-hero-section {
    padding: 120px 0 80px;
  }
  
  .services-hero-title {
    font-size: 2.5rem;
  }
  
  .services-hero-description {
    font-size: 1.1rem;
  }
}

/* ============================================
   NEW SERVICES OFFERINGS SECTION STYLES (SERVICE PAGE)
   ============================================ */

.services-offerings-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #1e293b 0%, #7a8112 50%, #1e293b 100%);
}

.offerings-background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.offerings-gradient {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.12;
  animation: offeringsGradientFloat 25s ease-in-out infinite;
}

.offerings-gradient-left {
  background: radial-gradient(circle, #6366f1, transparent);
  top: -300px;
  left: -300px;
  animation-delay: 0s;
}

.offerings-gradient-right {
  background: radial-gradient(circle, #10b981, transparent);
  bottom: -300px;
  right: -300px;
  animation-delay: 12s;
}

@keyframes offeringsGradientFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(80px, -80px) scale(1.15);
  }
}

.offerings-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.offerings-header-block {
  text-align: center;
  margin-bottom: 5rem;
}

.offerings-main-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Fira Sans Condensed', sans-serif;
  background: linear-gradient(135deg, #6366f1 0%, #10b981 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.offerings-intro-text {
  font-size: 1.2rem;
  color: #94a3b8;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.offerings-cards-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(4, auto);
  gap: 1.5rem;
}

.offering-card {
  position: relative;
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.offering-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.offering-card-wrapper {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.offering-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #10b981, #fbbf24);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.offering-card:hover .offering-card-accent {
  transform: scaleX(1);
}

.offering-card-primary {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(16, 185, 129, 0.15));
}

.offering-card-secondary {
  grid-column: 8 / 13;
  grid-row: span 2;
}

.offering-card-secondary:nth-of-type(2) {
  grid-row: 1 / 2;
}

.offering-card-secondary:nth-of-type(3) {
  grid-row: 2 / 3;
}

.offering-card-secondary:nth-of-type(4) {
  grid-row: 3 / 4;
}

.offering-icon-section {
  margin-bottom: 1.5rem;
}

.offering-icon-container {
  position: relative;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(16, 185, 129, 0.3));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(99, 102, 241, 0.4);
  transition: all 0.3s ease;
}

.offering-card:hover .offering-icon-container {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.offering-icon-container .material-icons-outlined {
  font-size: 28px;
  color: #818cf8;
  z-index: 2;
  transition: color 0.3s ease;
}

.offering-card:hover .offering-icon-container .material-icons-outlined {
  color: #ffffff;
}

.offering-icon-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.offering-card:hover .offering-icon-glow {
  opacity: 1;
}

.offering-card-body {
  flex: 1;
}

.offering-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: 'Fira Sans Condensed', sans-serif;
  line-height: 1.3;
}

.offering-card-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #cbd5e1;
}

@media (max-width: 1200px) {
  .offerings-cards-layout {
    grid-template-columns: repeat(8, 1fr);
  }
  
  .offering-card-primary {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
  }
  
  .offering-card-secondary {
    grid-column: 5 / 9;
  }
}

@media (max-width: 768px) {
  .services-offerings-section {
    padding: 80px 0;
  }
  
  .offerings-main-title {
    font-size: 2.5rem;
  }
  
  .offerings-cards-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  .offering-card-primary,
  .offering-card-secondary {
    grid-column: 1;
    grid-row: auto;
  }
  
  .offering-card-wrapper {
    padding: 1.5rem;
  }
}

/* ============================================
   NEW SERVICES FEATURES SECTION STYLES (SERVICE PAGE)
   ============================================ */

.services-features-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #7a8112 0%, #1e293b 50%, #7a8112 100%);
}

.features-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.features-shape {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
  animation: featuresShapeFloat 20s ease-in-out infinite;
}

.features-shape-1 {
  background: radial-gradient(circle, #6366f1, transparent);
  top: 10%;
  left: -200px;
  animation-delay: 0s;
}

.features-shape-2 {
  background: radial-gradient(circle, #10b981, transparent);
  bottom: 10%;
  right: -200px;
  animation-delay: 10s;
}

@keyframes featuresShapeFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(50px, -50px) scale(1.2);
  }
}

.features-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.features-header-section {
  text-align: center;
  margin-bottom: 5rem;
}

.features-main-heading {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Fira Sans Condensed', sans-serif;
  background: linear-gradient(135deg, #6366f1 0%, #10b981 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-intro-paragraph {
  font-size: 1.2rem;
  color: #94a3b8;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.features-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-item-card {
  position: relative;
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.feature-item-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #10b981, #fbbf24);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-item-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
}

.feature-item-card:hover::before {
  transform: scaleX(1);
}

.feature-item-wrapper {
  position: relative;
  z-index: 1;
}

.feature-item-icon-box {
  margin-bottom: 1.5rem;
}

.feature-item-icon-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(16, 185, 129, 0.3));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(99, 102, 241, 0.4);
  transition: all 0.3s ease;
}

.feature-item-card:hover .feature-item-icon-circle {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.feature-item-icon-circle .material-icons-outlined {
  font-size: 28px;
  color: #818cf8;
  transition: color 0.3s ease;
}

.feature-item-card:hover .feature-item-icon-circle .material-icons-outlined {
  color: #ffffff;
}

.feature-item-content {
  position: relative;
  z-index: 1;
}

.feature-item-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: 'Fira Sans Condensed', sans-serif;
  line-height: 1.4;
}

.feature-item-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #cbd5e1;
}

.feature-item-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-item-card:hover .feature-item-border {
  opacity: 1;
}

@media (max-width: 768px) {
  .services-features-section {
    padding: 80px 0;
  }
  
  .features-main-heading {
    font-size: 2.5rem;
  }
  
  .features-grid-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-item-card {
    padding: 2rem;
  }
}

/* ============================================
   LEGAL PAGES STYLES (Cookies, Privacy, Terms)
   ============================================ */

.legal-hero-section {
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #7a8112 0%, #1e293b 50%, #7a8112 100%);
}

.legal-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.legal-hero-pattern {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(80px);
  animation: legalHeroPatternFloat 25s ease-in-out infinite;
}

.legal-hero-pattern-1 {
  background: radial-gradient(circle, #6366f1, transparent);
  top: -250px;
  left: -250px;
  animation-delay: 0s;
}

.legal-hero-pattern-2 {
  background: radial-gradient(circle, #10b981, transparent);
  bottom: -250px;
  right: -250px;
  animation-delay: 12.5s;
}

@keyframes legalHeroPatternFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(60px, -60px) scale(1.15);
  }
}

.legal-hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.legal-hero-content {
  text-align: center;
}

.legal-hero-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.legal-hero-icon-frame {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 102, 241, 0.1);
  border: 2px solid rgba(99, 102, 241, 0.3);
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.legal-hero-icon-frame .material-icons-outlined {
  font-size: 3rem;
  color: #6366f1;
  z-index: 1;
}

.legal-hero-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.4), transparent);
  border-radius: 50%;
  animation: legalIconPulse 3s ease-in-out infinite;
}

@keyframes legalIconPulse {
  0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.legal-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Fira Sans Condensed', sans-serif;
  background: linear-gradient(135deg, #6366f1 0%, #10b981 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-hero-description {
  font-size: 1.2rem;
  color: #94a3b8;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-content-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #7a8112 0%, #1e293b 50%, #7a8112 100%);
}

.legal-content-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.legal-content-gradient {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  opacity: 0.08;
  filter: blur(100px);
  animation: legalContentGradientFloat 30s ease-in-out infinite;
}

.legal-content-gradient-1 {
  background: radial-gradient(circle, #6366f1, transparent);
  top: 10%;
  left: -300px;
  animation-delay: 0s;
}

.legal-content-gradient-2 {
  background: radial-gradient(circle, #10b981, transparent);
  bottom: 10%;
  right: -300px;
  animation-delay: 15s;
}

@keyframes legalContentGradientFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(50px, -50px) scale(1.2);
  }
}

.legal-content-container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.legal-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.legal-intro-block {
  text-align: center;
  padding: 2rem;
  background: rgba(99, 102, 241, 0.05);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.legal-intro-text {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.8;
  margin: 0;
}

.legal-content-item {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.legal-content-item:hover {
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
  transform: translateY(-5px);
}

.legal-item-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-item-icon-box {
  flex-shrink: 0;
}

.legal-item-icon-circle {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 102, 241, 0.1);
  border: 2px solid rgba(99, 102, 241, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.legal-content-item:hover .legal-item-icon-circle {
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.5);
  transform: scale(1.1);
}

.legal-item-icon-circle .material-icons-outlined {
  font-size: 1.8rem;
  color: #6366f1;
}

.legal-item-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.legal-item-body {
  margin-bottom: 1rem;
}

.legal-item-text {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.8;
  margin: 0 0 1rem 0;
}

.legal-link {
  color: #6366f1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: #818cf8;
  text-decoration: underline;
}

.legal-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.legal-feature-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.legal-feature-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-3px);
}

.legal-feature-icon-wrapper {
  margin-bottom: 1rem;
}

.legal-feature-icon-frame {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 50%;
}

.legal-feature-icon-frame .material-icons-outlined {
  font-size: 1.5rem;
  color: #6366f1;
}

.legal-feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.legal-feature-text {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

.legal-purposes-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.legal-purpose-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.4);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.legal-purpose-item:hover {
  background: rgba(15, 23, 42, 0.6);
  transform: translateX(5px);
}

.legal-purpose-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 50%;
}

.legal-purpose-icon .material-icons-outlined {
  font-size: 1.3rem;
  color: #6366f1;
}

.legal-purpose-text {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.legal-rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.legal-right-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.legal-right-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-3px);
}

.legal-right-icon-wrapper {
  margin-bottom: 1rem;
}

.legal-right-icon-frame {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 50%;
}

.legal-right-icon-frame .material-icons-outlined {
  font-size: 1.5rem;
  color: #6366f1;
}

.legal-right-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.legal-right-text {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

.legal-item-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.legal-content-item:hover .legal-item-accent {
  opacity: 1;
}

@media (max-width: 768px) {
  .legal-hero-section {
    padding: 120px 0 80px;
  }
  
  .legal-hero-title {
    font-size: 2.5rem;
  }
  
  .legal-hero-description {
    font-size: 1.1rem;
  }
  
  .legal-content-section {
    padding: 80px 0;
  }
  
  .legal-content-item {
    padding: 1.5rem;
  }
  
  .legal-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .legal-features-grid,
  .legal-rights-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   THANKS PAGE STYLES
   ============================================ */

.thanks-hero-section {
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #7a8112 0%, #1e293b 50%, #7a8112 100%);
}

.thanks-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.thanks-hero-pattern {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(80px);
  animation: thanksHeroPatternFloat 25s ease-in-out infinite;
}

.thanks-hero-pattern-1 {
  background: radial-gradient(circle, #10b981, transparent);
  top: -250px;
  left: -250px;
  animation-delay: 0s;
}

.thanks-hero-pattern-2 {
  background: radial-gradient(circle, #6366f1, transparent);
  bottom: -250px;
  right: -250px;
  animation-delay: 12.5s;
}

@keyframes thanksHeroPatternFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(60px, -60px) scale(1.15);
  }
}

.thanks-hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.thanks-hero-content {
  text-align: center;
}

.thanks-hero-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.thanks-hero-icon-frame {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid rgba(16, 185, 129, 0.3);
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.thanks-hero-icon-frame .material-icons-outlined {
  font-size: 4rem;
  color: #10b981;
  z-index: 1;
}

.thanks-hero-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.4), transparent);
  border-radius: 50%;
  animation: thanksIconPulse 3s ease-in-out infinite;
}

@keyframes thanksIconPulse {
  0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.thanks-hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Fira Sans Condensed', sans-serif;
  background: linear-gradient(135deg, #10b981 0%, #6366f1 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thanks-hero-description {
  font-size: 1.3rem;
  color: #94a3b8;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.thanks-content-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #7a8112 0%, #1e293b 50%, #7a8112 100%);
}

.thanks-content-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.thanks-content-gradient {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  opacity: 0.08;
  filter: blur(100px);
  animation: thanksContentGradientFloat 30s ease-in-out infinite;
}

.thanks-content-gradient-1 {
  background: radial-gradient(circle, #10b981, transparent);
  top: 10%;
  left: -300px;
  animation-delay: 0s;
}

.thanks-content-gradient-2 {
  background: radial-gradient(circle, #6366f1, transparent);
  bottom: 10%;
  right: -300px;
  animation-delay: 15s;
}

@keyframes thanksContentGradientFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(50px, -50px) scale(1.2);
  }
}

.thanks-content-container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.thanks-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.thanks-message-block {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.thanks-message-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.thanks-message-icon-frame {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid rgba(16, 185, 129, 0.3);
  border-radius: 50%;
}

.thanks-message-icon-frame .material-icons-outlined {
  font-size: 2.5rem;
  color: #10b981;
}

.thanks-message-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.thanks-message-text {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.8;
  margin: 0;
}

.thanks-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.thanks-info-card {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-align: center;
}

.thanks-info-card:hover {
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
  transform: translateY(-5px);
}

.thanks-info-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.thanks-info-icon-frame {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 102, 241, 0.1);
  border: 2px solid rgba(99, 102, 241, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.thanks-info-card:hover .thanks-info-icon-frame {
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.5);
  transform: scale(1.1);
}

.thanks-info-icon-frame .material-icons-outlined {
  font-size: 2rem;
  color: #6366f1;
}

.thanks-info-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.thanks-info-text {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

.thanks-cta-block {
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 20px;
  padding: 3rem 2rem;
  backdrop-filter: blur(10px);
  text-align: center;
}

.thanks-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.thanks-cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.thanks-cta-text {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.thanks-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.thanks-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.thanks-cta-button-primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.thanks-cta-button-primary:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.thanks-cta-button-secondary {
  background: transparent;
  color: #6366f1;
  border: 2px solid rgba(99, 102, 241, 0.5);
}

.thanks-cta-button-secondary:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.8);
  transform: translateY(-2px);
}

.thanks-cta-button-text {
  font-family: 'Fira Sans Condensed', sans-serif;
}

.thanks-cta-button-icon {
  display: flex;
  align-items: center;
}

.thanks-cta-button-icon .material-icons-outlined {
  font-size: 1.2rem;
}

.thanks-disclaimer-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(251, 191, 36, 0.05);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 12px;
}

.thanks-disclaimer-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(251, 191, 36, 0.1);
  border-radius: 50%;
}

.thanks-disclaimer-icon .material-icons-outlined {
  font-size: 1.3rem;
  color: #fbbf24;
}

.thanks-disclaimer-text {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

@media (max-width: 768px) {
  .thanks-hero-section {
    padding: 120px 0 80px;
  }
  
  .thanks-hero-title {
    font-size: 2.5rem;
  }
  
  .thanks-hero-description {
    font-size: 1.1rem;
  }
  
  .thanks-content-section {
    padding: 80px 0;
  }
  
  .thanks-message-block {
    padding: 2rem 1.5rem;
  }
  
  .thanks-message-title {
    font-size: 1.5rem;
  }
  
  .thanks-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .thanks-cta-block {
    padding: 2rem 1.5rem;
  }
  
  .thanks-cta-title {
    font-size: 1.5rem;
  }
  
  .thanks-cta-actions {
    flex-direction: column;
  }
  
  .thanks-cta-button {
    width: 100%;
    justify-content: center;
  }
}