/* ==================== WHY CHOOSE ANISTON SECTION - MODERN STYLE ==================== */

.why-choose-section {
  width: 100%;
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.why-choose-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.why-choose-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.why-choose-title {
  font-size: 4.0rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.1;
  position: relative;
  display: inline-block;
}

.why-choose-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #000 0%, #333 50%, #000 100%);
  border-radius: 2px;
}

.why-choose-subtitle {
  font-size: 2.0rem;
  color: #555;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
  font-weight: 300;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 40px 40px;
  margin-top: 60px;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 50px 40px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-item::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.benefit-item:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 0, 0, 0.2);
}

.benefit-item:hover::before {
  opacity: 1;
}

.benefit-item:hover::after {
  opacity: 1;
  top: -10%;
  right: -10%;
}

.benefit-item:nth-child(odd) {
  transform: rotate(-1deg);
}

.benefit-item:nth-child(even) {
  transform: rotate(1deg);
}

.benefit-item:hover:nth-child(odd),
.benefit-item:hover:nth-child(even) {
  transform: translateY(-15px) scale(1.02) rotate(0deg);
}

.benefit-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #000 0%, #333 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefit-icon::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, #000, #333, #000);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.15) rotate(10deg);
  background: linear-gradient(135deg, #333 0%, #000 100%);
}

.benefit-item:hover .benefit-icon::before {
  opacity: 1;
}

.benefit-icon i {
  font-size: 40px;
  color: #fff;
  transition: all 0.4s ease;
}

.benefit-item:hover .benefit-icon i {
  transform: scale(1.1);
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.benefit-content {
  text-align: left;
}

.benefit-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.benefit-item:hover .benefit-title {
  color: #000;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.benefit-description {
  font-size: 1.6rem;
  color: #666;
  line-height: 1.8;
  margin: 0;
  transition: color 0.3s ease;
}

.benefit-item:hover .benefit-description {
  color: #555;
}

/* ==================== SPECIAL ALTERNATING LAYOUT ==================== */

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }
.benefit-item:nth-child(5) { animation-delay: 0.5s; }
.benefit-item:nth-child(6) { animation-delay: 0.6s; }

/* Different colored accents for each item */
.benefit-item:nth-child(1) .benefit-icon {
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
}

.benefit-item:nth-child(2) .benefit-icon {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.benefit-item:nth-child(3) .benefit-icon {
  background: linear-gradient(135deg, #404040 0%, #2d2d2d 100%);
}

.benefit-item:nth-child(4) .benefit-icon {
  background: linear-gradient(135deg, #1a1a1a 0%, #404040 100%);
}

.benefit-item:nth-child(5) .benefit-icon {
  background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
}

.benefit-item:nth-child(6) .benefit-icon {
  background: linear-gradient(135deg, #2d2d2d 0%, #333 100%);
}

/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 1200px) {
  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 50px 35px;
  }
  
  .why-choose-title {
    font-size: 3.4rem;
  }
  
  .why-choose-subtitle {
    font-size: 1.8rem;
  }
}

@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
  
  .benefit-item {
    padding: 40px 30px;
  }
  
  .benefit-icon {
    width: 85px;
    height: 85px;
  }
  
  .benefit-icon i {
    font-size: 35px;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 80px 0;
  }
  
  .why-choose-container {
    padding: 0 15px;
  }
  
  .why-choose-header {
    margin-bottom: 60px;
  }
  
  .why-choose-title {
    font-size: 2.8rem;
  }
  
  .why-choose-subtitle {
    font-size: 1.6rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .benefit-item {
    padding: 35px 25px;
    border-radius: 15px;
  }
  
  .benefit-item:nth-child(odd),
  .benefit-item:nth-child(even) {
    transform: rotate(0deg);
  }
  
  .benefit-icon {
    width: 75px;
    height: 75px;
    margin-bottom: 25px;
  }
  
  .benefit-icon i {
    font-size: 30px;
  }
  
  .benefit-title {
    font-size: 2.0rem;
  }
  
  .benefit-description {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .why-choose-section {
    padding: 60px 0;
  }
  
  .why-choose-container {
    padding: 0 10px;
  }
  
  .why-choose-title {
    font-size: 2.4rem;
  }
  
  .why-choose-subtitle {
    font-size: 1.6rem;
  }
  
  .benefit-item {
    padding: 30px 20px;
  }
  
  .benefit-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
  }
  
  .benefit-icon i {
    font-size: 26px;
  }
  
  .benefit-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .benefit-description {
    font-size: 1.6rem;
  }
}

/* ==================== ACCESSIBILITY ==================== */

@media (prefers-reduced-motion: reduce) {
  .benefit-item,
  .benefit-icon,
  .benefit-item::before,
  .benefit-item::after {
    transition: none;
    animation: none;
  }
  
  .benefit-item:hover {
    transform: none;
  }
  
  .benefit-item:hover .benefit-icon {
    transform: none;
  }
  
  .benefit-item:nth-child(odd),
  .benefit-item:nth-child(even) {
    transform: none;
  }
}

.benefit-item:focus-within {
  outline: 3px solid #000;
  outline-offset: 4px;
}

/* ==================== ADVANCED ANIMATIONS ==================== */

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.benefit-item {
  animation: floatIn 0.8s ease forwards;
  opacity: 0;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.benefit-item:hover .benefit-icon {
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

/* ==================== PRINT STYLES ==================== */

@media print {
  .why-choose-section {
    padding: 30px 0;
    background: #fff;
  }
  
  .benefit-item {
    border: 2px solid #000;
    break-inside: avoid;
    margin-bottom: 25px;
    box-shadow: none;
    transform: none !important;
  }
  
  .benefit-icon {
    background: #000 !important;
    box-shadow: none;
  }
  
  .why-choose-title {
    font-size: 24pt;
  }
  
  .benefit-title {
    font-size: 16pt;
  }
  
  .benefit-description,
  .why-choose-subtitle {
    font-size: 12pt;
  }
}

/* ==================== CTA SECTION ==================== */

.cta-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #212529 0%, #495057 100%);
  color: #ffffff;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.cta-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.cta-description {
  font-size: 2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 1.5rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  min-width: 200px;
}

.cta-btn.primary {
  background: #ffffff;
  color: #212529;
  border: 2px solid #ffffff;
}

.cta-btn.primary:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.cta-btn.secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cta-btn.secondary:hover {
  background: #ffffff;
  color: #212529;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* CTA Responsive Design */
@media (max-width: 992px) {
  .cta-title {
    font-size: 3.2rem;
  }
  
  .cta-description {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 6rem 0;
  }
  
  .cta-title {
    font-size: 2.8rem;
  }
  
  .cta-description {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 4rem 0;
  }
  
  .cta-container {
    padding: 0 1rem;
  }
  
  .cta-title {
    font-size: 2.4rem;
  }
  
  .cta-description {
    font-size: 1.4rem;
  }
  
  .cta-btn {
    padding: 1.2rem 2rem;
    font-size: 1.6rem;
  }
}
