/* corporate-website/assets/css/contact-restyle.css */

/* Main content section styling */
.contact-main-section {
  background-color: #f9fafc;
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Unified contact card */
.contact-unified-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.07);
  padding: 40px;
  margin-bottom: 40px;
}

.contact-unified-card .contact-header {
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.contact-unified-card .contact-header .icon-wrapper {
  width: 50px;
  height: 50px;
  background-color: #a5c33c;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
}

.contact-unified-card .contact-methods .method-item {
  margin-bottom: 30px;
}

.contact-unified-card .method-item:last-child {
  margin-bottom: 0;
}

/* Sidebar card styling */
.contact-sidebar .sidebar-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.contact-sidebar .sidebar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-sidebar .sidebar-card .sidebar-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-sidebar .sidebar-card .sidebar-header .icon-wrapper {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
  font-size: 20px;
}

.contact-sidebar .sidebar-card .sidebar-header .icon-wrapper.icon-response {
  background-color: rgba(255, 180, 0, 0.1);
  color: #ffb400;
}

.contact-sidebar .sidebar-card .sidebar-header .icon-wrapper.icon-faq {
  background-color: #a5c33c;
  color: #ffffff;
}

.contact-sidebar .sidebar-card .sidebar-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 0;
}

/* Process flow adjustments */
.process-flow-sidebar .process-step {
  padding: 20px;
  margin-bottom: 20px;
  border-left: 3px solid #4d7bff;
  background-color: #ffffff;
  border-radius: 0 8px 8px 0;
}

.process-flow-sidebar .process-step .step-number {
  font-size: 16px;
  font-weight: 700;
  color: #4d7bff;
  margin-bottom: 5px;
}

.process-flow-sidebar .process-step .step-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
}

.process-flow-sidebar .process-step .step-description {
  font-size: 13px;
  color: #666;
}

/* Stat card styling */
.stat-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.stat-card .stat-icon {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 15px;
  display: block;
}

.stat-card h3 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.stat-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}