 
.why-choose-section {
  position: relative;
  padding: 00px 0;
  background: var(--themeColor);
  overflow: hidden;
}

.WhyUsContainer { 
  margin: 0 auto;
  padding: 0 10%;
  position: relative;
  z-index: 2;
}

/* ============================================
   BACKGROUND ELEMENTS
============================================ */

.bg-gradient-1 {
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  animation: floatSlow 20s ease-in-out infinite;
}

.bg-gradient-2 {
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  animation: floatSlow 25s ease-in-out infinite reverse;
}

@keyframes floatSlow {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(50px, 50px);
  }
}

.floating-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(139, 92, 246, 0.6);
  border-radius: 50%;
  filter: blur(1px);
}

.particle-1 {
  top: 20%;
  left: 10%;
  animation: float 6s ease-in-out infinite;
}

.particle-2 {
  top: 60%;
  right: 15%;
  animation: float 8s ease-in-out infinite 2s;
}

.particle-3 {
  bottom: 30%;
  left: 30%;
  animation: float 7s ease-in-out infinite 1s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-30px) translateX(20px);
    opacity: 0.7;
  }
}

/* ============================================
   SECTION HEADER
============================================ */

.section-header {
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-label {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 50px;
  color: #8b5cf6;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.section-title {
  font-family: var(--fontFamilyMarcellus);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-highlight {
  display: block; 
  color: white;
  font-size: 56px;
}

.section-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
}

/* ============================================
   LandingFeatureS GRID
============================================ */

.LandingFeatures-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

/* ============================================
   LandingFeature LandingCard (Flip Effect)
============================================ */

.LandingFeature-LandingCard {
  perspective: 1000px;
  height: 280px;
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  animation: LandingCardReveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.LandingFeature-LandingCard:nth-child(1) { animation-delay: 0.4s; }
.LandingFeature-LandingCard:nth-child(2) { animation-delay: 0.5s; }
.LandingFeature-LandingCard:nth-child(3) { animation-delay: 0.6s; }
.LandingFeature-LandingCard:nth-child(4) { animation-delay: 0.7s; }
.LandingFeature-LandingCard:nth-child(5) { animation-delay: 0.8s; }
.LandingFeature-LandingCard:nth-child(6) { animation-delay: 0.9s; }
.LandingFeature-LandingCard:nth-child(7) { animation-delay: 1s; }
.LandingFeature-LandingCard:nth-child(8) { animation-delay: 1.1s; }
.LandingFeature-LandingCard:nth-child(9) { animation-delay: 1.2s; }
.LandingFeature-LandingCard:nth-child(10) { animation-delay: 1.3s; }
.LandingFeature-LandingCard:nth-child(11) { animation-delay: 1.4s; }
.LandingFeature-LandingCard:nth-child(12) { animation-delay: 1.5s; }

@keyframes LandingCardReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.LandingCard-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.LandingFeature-LandingCard:hover .LandingCard-inner {
  transform: rotateY(180deg);
}

.LandingCard-front,
.LandingCard-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.LandingCard-front {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.LandingCard-back {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.15));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
  transform: rotateY(180deg);
}

/* ============================================
   LandingCard CONTENT
============================================ */

.icon-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.icon {
  width: 64px;
  height: 64px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.4));
  transition: transform 0.3s ease;
}

.icon circle,
.icon path,
.icon rect,
.icon ellipse {
  transition: all 0.3s ease;
}

.LandingFeature-LandingCard:hover .LandingCard-front .icon {
  transform: scale(1.1) rotate(5deg);
}

.icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
  filter: blur(20px);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

.LandingCard-title {
  font-size: 22px;
  font-weight: 600;
  color: white;
  font-family: var(--fontFamilyMarcellus);
  line-height: 1.4;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.LandingCard-arrow {
  font-size: 24px;
  color: #8b5cf6;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.LandingFeature-LandingCard:hover .LandingCard-arrow {
  opacity: 1;
  transform: translateX(5px);
}

.LandingCard-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

/* ============================================
   CTA SECTION
============================================ */

.cta-section {
  text-align: center;
  padding: 60px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  position: relative; 
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.cta-title {
  font-family: var(--fontFamilyMarcellus);
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  font-weight: 300;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: white;
  color: var(--themeColor);
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover::before {
  width: 400px;
  height: 400px;
}

.cta-button:hover {
  transform: translateY(-4px);
  color: var(--themeColor);
  box-shadow: 0 12px 48px rgba(139, 92, 246, 0.5);
}

.cta-button svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.cta-button:hover svg {
  transform: translateX(5px);
}

.cta-button span {
  position: relative;
  z-index: 1;
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */

@media (max-width: 1200px) {
  .LandingFeatures-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 968px) {
  .why-choose-section {
    padding: 80px 0;
  }
  
  .container {
    padding: 0 30px;
  }
  
  .section-title {
    font-size: 42px;
  }
  
  .LandingFeatures-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .LandingFeature-LandingCard {
    height: 260px;
  }
  
  .cta-section {
    padding: 50px 30px;
  }
  
  .cta-title {
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  .section-title {
    font-size: 32px;
  }
  
  .section-description {
    font-size: 16px;
  }
  
  .LandingFeatures-grid {
    grid-template-columns: 1fr;
  }
  
  .LandingFeature-LandingCard {
    height: 240px;
  }
  
  .LandingCard-front,
  .LandingCard-back {
    padding: 24px;
  }
  
  .icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  .icon {
    width: 48px;
    height: 48px;
  }
  
  .LandingCard-title {
    font-size: 16px;
  }
  
  .LandingCard-description {
    font-size: 14px;
  }
  
  .cta-section {
    padding: 40px 24px;
  }
  
  .cta-title {
    font-size: 24px;
  }
  
  .cta-description {
    font-size: 16px;
  }
  
  .cta-button {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   ACCESSIBILITY
============================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .LandingFeature-LandingCard:hover .LandingCard-inner {
    transform: none;
  }
}

/* Focus States */
.cta-button:focus-visible {
  outline: 2px solid #8b5cf6;
  outline-offset: 4px;
}

/* ============================================
   PRINT STYLES
============================================ */

@media print {
  .why-choose-section {
    background: white;
    color: black;
  }
  
  .LandingFeature-LandingCard {
    break-inside: avoid;
  }
}