/* ========================================
   ABOUT FEATURES SECTION - PREMIUM DESIGN
   ======================================== */

#about-features-premium {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
}

.about-features-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Features Content Layout */
.about-features-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 992px) {
  .about-features-content {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

/* Left Side - Cards */
.about-features-left {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 576px) {
  .about-features-left {
    grid-template-columns: 1fr;
  }
}

/* Feature Card Base */
.about-feature-card {
  padding: 40px 32px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* White Cards */
.about-feature-card.white {
  background: white;
  border: 2px solid #f0f0f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.about-feature-card.white:hover {
  border-color: rgb(229, 84, 0);
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(229, 84, 0, 0.15);
}

/* Orange Cards */
.about-feature-card.orange {
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(255, 107, 0));
  border: 2px solid rgb(229, 84, 0);
  box-shadow: 0 8px 24px rgba(229, 84, 0, 0.3);
}

.about-feature-card.orange:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(229, 84, 0, 0.4);
}

/* Card Icon */
.about-feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.about-feature-card.white .about-feature-icon {
  background: linear-gradient(135deg, rgba(229, 84, 0, 0.12), rgba(229, 84, 0, 0.08));
}

.about-feature-card.orange .about-feature-icon {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.about-feature-card:hover .about-feature-icon {
  transform: scale(1.1) rotate(-5deg);
}

.about-feature-icon i {
  font-size: 32px;
}

.about-feature-card.white .about-feature-icon i {
  color: rgb(229, 84, 0);
}

.about-feature-card.orange .about-feature-icon i {
  color: white;
}

/* Card Title */
.about-feature-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.about-feature-card.white .about-feature-title {
  color: #1a252f;
}

.about-feature-card.orange .about-feature-title {
  color: white;
}

/* Card Description */
.about-feature-desc {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.about-feature-card.white .about-feature-desc {
  color: #6c757d;
}

.about-feature-card.orange .about-feature-desc {
  color: rgba(255, 255, 255, 0.9);
}

/* Right Side - Image Grid */
.about-features-right {
  position: relative;
}

.about-features-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-features-image-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 280px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.about-features-image-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(229, 84, 0, 0.2);
}

.about-features-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Decorative Element */
.about-features-right::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(229, 84, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

/* Responsive Design */
@media (max-width: 991px) {
  #about-features-premium {
    padding: 80px 0;
  }
  
  .about-features-content {
    gap: 50px;
  }
  
  .about-features-left {
    gap: 20px;
  }
  
  .about-feature-card {
    padding: 32px 24px;
  }
  
  .about-features-image-item {
    height: 240px;
  }
}

@media (max-width: 768px) {
  #about-features-premium {
    padding: 60px 0;
  }
  
  .about-feature-card {
    padding: 28px 20px;
  }
  
  .about-feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .about-feature-icon i {
    font-size: 28px;
  }
  
  .about-feature-title {
    font-size: 20px;
  }
  
  .about-feature-desc {
    font-size: 14px;
  }
  
  .about-features-image-item {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .about-features-image-grid {
    grid-template-columns: 1fr;
  }
  
  .about-features-image-item {
    height: 220px;
  }
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.about-features-left {
  animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.about-features-right {
  animation: fadeInRight 0.8s ease-out 0.3s both;
}

.about-feature-card:nth-child(1) {
  animation: scaleIn 0.6s ease-out 0.4s both;
}

.about-feature-card:nth-child(2) {
  animation: scaleIn 0.6s ease-out 0.5s both;
}

.about-feature-card:nth-child(3) {
  animation: scaleIn 0.6s ease-out 0.6s both;
}

.about-feature-card:nth-child(4) {
  animation: scaleIn 0.6s ease-out 0.7s both;
}
