/* VGSV Scheme - Compact Design matching original site */

/* Compact Plan Cards */
.plan-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 20px;
  margin-bottom: 20px;
  transition: transform 0.2s ease;
  border: 1px solid #e9ecef;
}

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

.plan-card-header {
  text-align: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.plan-icon {
  background: #667eea;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.5rem;
}

.plan-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.plan-subtitle {
  color: #667eea;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Compact Rate Tables */
.rate-table {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}

.rate-table thead {
  background: #667eea;
}

.rate-table th {
  color: white;
  font-weight: 600;
  padding: 12px 10px;
  border: none;
  text-align: center;
  font-size: 0.9rem;
}

.rate-table td {
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
  font-size: 0.9rem;
}

.rate-highlight {
  background: #667eea;
  color: white;
  font-weight: 600;
  border-radius: 4px;
  padding: 4px 8px;
  display: inline-block;
  font-size: 0.85rem;
}

/* Compact Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.feature-item {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 6px;
  border-left: 3px solid #667eea;
  transition: all 0.2s ease;
}

.feature-item:hover {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-item h5 {
  color: #2c3e50;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 1rem;
}

.feature-item p {
  color: #666;
  margin: 0;
  line-height: 1.4;
  font-size: 0.9rem;
}

/* Compact Process Steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 25px 0;
}

.process-step {
  background: white;
  padding: 20px 15px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #e9ecef;
  transition: all 0.2s ease;
}

.process-step:hover {
  border-color: #667eea;
  transform: translateY(-1px);
}

.process-step span {
  background: #667eea;
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-weight: 600;
  font-size: 1rem;
}

.process-step h4 {
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 1rem;
}

.process-step p {
  color: #666;
  margin: 0;
  line-height: 1.4;
  font-size: 0.85rem;
}

/* Compact Section Spacing */
.professional-section {
  padding: 40px 0 !important;
}

.section-heading {
  margin-bottom: 25px !important;
}

.section-heading h2,
.section-heading h3 {
  margin-bottom: 10px !important;
}

/* Text Utilities */
.highlight-text {
  color: #667eea;
  font-weight: 600;
}

.info-badge {
  background: #e3f2fd;
  color: #1565c0;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  display: inline-block;
}

/* Remove excessive margins */
.row {
  margin-bottom: 0 !important;
}

.col-lg-4,
.col-lg-6,
.col-md-6 {
  margin-bottom: 15px;
}

/* Match original site colors */
.btn-primary {
  background-color: #667eea !important;
  border-color: #667eea !important;
}

.btn-primary:hover {
  background-color: #5a67d8 !important;
  border-color: #5a67d8 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .plan-card {
    padding: 15px;
    margin-bottom: 15px;
  }
  
  .feature-grid,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .professional-section {
    padding: 25px 0 !important;
  }
  
  .plan-title {
    font-size: 1.1rem;
  }
  
  .process-step {
    padding: 15px 10px;
  }
}

/* Animation - subtle */
.fade-in {
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}