/* ===== CUSTOM BRAND PAGE - FEATURES STYLES ===== */

/* Features Section */
.features-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.features-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: #2c2c2c;
  text-align: center;
  margin-bottom: 70px;
  background: linear-gradient(135deg, #2c2c2c 0%, #722f37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}

.feature-card {
  text-align: center;
  padding: 45px 35px;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  background: white;
  border-color: rgba(212, 175, 55, 0.3);
}

.feature-icon {
  font-size: 64px;
  margin-bottom: 25px;
  filter: grayscale(0);
  transition: all 0.4s ease;
  display: inline-block;
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 5px 10px rgba(212, 175, 55, 0.3));
}

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 18px;
  transition: color 0.3s ease;
}

.feature-card:hover h3 {
  color: #722f37;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  transition: color 0.3s ease;
}

.feature-card:hover p {
  color: #555;
}

@media (max-width: 768px) {
  .feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature-icon {
    flex-shrink: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
