/* Icon Styles - Standardized across Freaze Hosting */

/* Feature icon with circular background */
.feature-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(67, 191, 227, 0.1); /* Light blue with low opacity */
  margin-bottom: 20px;
  color: #43bfe3 !important; /* Icon color */	
}

/* Medium-sized feature icon wrapper */
.feature-icon-wrapper-md {
  width: 60px;
  height: 60px;
}

/* Small-sized feature icon wrapper */
.feature-icon-wrapper-sm {
  width: 45px;
  height: 45px;
}

/* Icon color - keep sizing on the wrapper, not the <i> itself */
.feature-icon-wrapper i,
.text-primary {
  color: #43bfe3 !important;
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}

/* Feature boxes */
.feature-box {
  padding: 30px;
  border-radius: 16px;
  transition: all 0.3s ease;
  background-color: #151515;
  border: 1px solid #333;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  height: 100%;
  text-align: center;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  border-color: #43bfe3;
}
}

.feature-box .feature-icon-wrapper {
  margin: 0 auto 20px;
}

.feature-title {
  font-weight: 600;
  color: #ffffff; /* White for dark mode */
  margin-bottom: 15px;
}

/* Card feature icons */
.service-card-feature i {
  color: #43bfe3 !important;
  margin-right: 0.5rem;
}

/* Feature icons in boxes */
.feature-card i,
.feature-box i {
  font-size: 2rem;
  color: #43bfe3 !important;
}

/* Success icons for checklists - change from green to light blue */
.fa-check.text-success {
  color: #43bfe3 !important;
}

/* Pricing table feature check */
.pricing-feature-check {
  color: #43bfe3 !important;
}

/* Making icons consistent for game hosting */
.minecraft-icon {
  color: #43bfe3 !important;
}

/* VPS and server features */
.vps-package-card i,
.server-card i {
  color: #43bfe3 !important;
}

/* Domain features */
.domain-feature i {
  color: #43bfe3 !important;
}

/* Responsive sizing */
@media (max-width: 768px) {
  .feature-icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon-wrapper-md {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon-wrapper-sm {
    width: 40px;
    height: 40px;
  }
}
