/* Dedicated Server Features Section Styles */
.se-iv {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.se-iv .se-title {
  margin-bottom: 3rem;
}

.se-iv .title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.se-iv .subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Features List Styles */
.features-list .feature-item {
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.features-list .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.features-list .feature-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: transparent;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  transition: all 0.3s ease;
}

.features-list .feature-icon:hover {
  transform: scale(1.05);
}

.features-list .feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.features-list .feature-description {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* Image Section Styles */
.features-image-section .main-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.features-image-section .main-image img {
  transition: transform 0.3s ease;
}

.features-image-section .main-image:hover img {
  transform: scale(1.05);
}

/* Feature Cards Styles */
.feature-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.feature-card .feature-icon {
  width: 60px;
  height: 60px;
  background: transparent;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.feature-card .feature-icon:hover {
  transform: scale(1.05);
}

.feature-card .feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.75rem;
}

.feature-card .feature-text {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.5;
  margin: 0;
}

/* Footer Checks Styles */
.se-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e9ecef;
}

.se-footer .line {
  margin: 0.5rem 1rem;
  padding: 0.75rem 1.5rem;
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.se-footer .line:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.se-footer .icon {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}

.se-footer .text {
  font-weight: 500;
  color: #2c3e50;
  font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .se-iv .title {
    font-size: 2.2rem;
  }
  
  .features-list .feature-item {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 991.98px) {
  .se-iv .title {
    font-size: 2rem;
  }
  
  .features-list {
    margin-bottom: 2rem;
  }
  
  .feature-card {
    margin-bottom: 1rem;
  }
}

@media (max-width: 767.98px) {
  .se-iv {
    padding: 60px 0;
  }
  
  .se-iv .title {
    font-size: 1.8rem;
  }
  
  .se-iv .subtitle {
    font-size: 1rem;
  }
  
  .features-list .feature-item {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  .features-list .feature-icon {
    width: 50px;
    height: 50px;
    margin-right: 0.75rem;
  }
  
  .features-list .feature-title {
    font-size: 1.1rem;
  }
  
  .features-list .feature-description {
    font-size: 0.9rem;
  }
  
  .feature-card {
    padding: 1rem;
  }
  
  .se-footer {
    margin-top: 2rem;
  }
  
  .se-footer .line {
    margin: 0.25rem 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 575.98px) {
  .se-iv .title {
    font-size: 1.6rem;
  }
  
  .features-list .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .features-list .feature-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .se-footer {
    flex-direction: column;
  }
  
  .se-footer .line {
    margin: 0.25rem 0;
    width: 100%;
    justify-content: center;
  }
}

/* Icon Styling */
.features-list .feature-icon img,
.feature-card .feature-icon img {
  filter: none;
  transition: all 0.3s ease;
}

.features-list .feature-icon:hover img,
.feature-card .feature-icon:hover img {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transform: scale(1.1);
}

/* Animation for loading */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

.features-list .feature-icon {
  animation: pulse 3s ease-in-out infinite;
}

.feature-item,
.feature-card {
  animation: fadeInUp 0.6s ease forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }

.feature-card:nth-child(1) { animation-delay: 0.4s; }
.feature-card:nth-child(2) { animation-delay: 0.5s; }
.feature-card:nth-child(3) { animation-delay: 0.6s; }