/* Feature Cards - Blue Theme with Neumorphic Design */

/* Feature Section Background */
section.feature-section {
  background-color: #f0f9ff; /* light blue background */
  padding: 80px 0;
}

/* Feature Cards */
.feature-section .feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.feature-section .feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 20px;
  z-index: 1;
}

.feature-section .feature-card > * {
  position: relative;
  z-index: 2;
}

.feature-section .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Feature Icons */
.feature-section .feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0f2fe;
  color: #2563eb;
  box-shadow: 
    0 4px 16px rgba(37, 99, 235, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.1);
  position: relative;
}

.feature-section .feature-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  border-radius: 16px;
  z-index: 1;
}

.feature-section .feature-icon svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
  position: relative;
  z-index: 2;
}

/* Feature Card Text */
.feature-section .feature-card h5 {
  color: #1e293b;
  font-size: 18px; /* text-lg - Card Titles */
  font-weight: 600; /* font-semibold */
  margin-bottom: 15px;
  line-height: 1.3;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.feature-section .feature-card p {
  color: #64748b;
  font-size: 14px; /* text-sm - Card descriptions, metadata */
  line-height: 1.6;
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
}

/* Multi-branch Cards (for other sections) */
.multi-branch-card {
  background: linear-gradient(145deg, #f0f9ff, #e0f2fe);
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 
    0 6px 24px rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(37, 99, 235, 0.1);
  position: relative;
}

.multi-branch-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 16px;
  z-index: 1;
}

.multi-branch-card > * {
  position: relative;
  z-index: 2;
}

.multi-branch-card:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 12px 36px rgba(0, 0, 0, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  background: linear-gradient(145deg, #e0f2fe, #ffffff);
}

.multi-branch-card h5 {
  color: #1e40af;
  font-weight: 600; /* font-semibold */
  margin-bottom: 10px;
  font-size: 16px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.multi-branch-card p {
  color: #000000;
  font-size: 14px; /* text-sm - Card descriptions, metadata */
  line-height: 1.5;
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
}

.multi-branch-card h5 a {
  color: #1e40af !important;
  text-decoration: none !important;
}

.multi-branch-card h5 a:hover {
  color: #2563eb !important;
  text-decoration: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  section.feature-section {
    padding: 60px 0;
  }
  
  .feature-section .feature-card {
    padding: 30px 20px;
    border-radius: 16px;
  }
  
  .feature-section .feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
  }
  
  .feature-section .feature-icon svg {
    width: 36px;
    height: 36px;
  }
  
  .feature-section .feature-card h5 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .feature-section .feature-card p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  section.feature-section {
    padding: 40px 0;
  }
  
  .feature-section .feature-card {
    padding: 25px 15px;
    border-radius: 12px;
  }
  
  .feature-section .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
  }
  
  .feature-section .feature-icon svg {
    width: 32px;
    height: 32px;
  }
  
  .feature-section .feature-card h5 {
    font-size: 15px;
    margin-bottom: 10px;
  }
  
  .feature-section .feature-card p {
    font-size: 12px;
  }
}
