/* ============================================
   PAGES COMMON STYLES
   public/css/pages.css
   ============================================ */

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #FF1F66 0%, #FF592A 100%);
  padding: 80px 0 60px;
  color: white;
}

.page-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
}

.page-description {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 0;
}

/* Content Section */
.content-section {
  padding: 80px 0;
  background: #f8f9fa;
}

/* Stats Box */
.stat-box {
  background: white;
  padding: 32px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #FF1F66;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #666;
  font-weight: 600;
}

/* Feature Card */
.feature-card {
  background: white;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #FF1F66 0%, #FF592A 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
  font-size: 32px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Manual Cards */
.manual-category {
  margin-bottom: 48px;
}

.category-title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.category-title i {
  color: #FF1F66;
}

.manual-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 20px;
  height: 100%;
  transition: all 0.3s ease;
}

.manual-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.manual-icon-large {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #FF1F66 0%, #FF592A 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  flex-shrink: 0;
}

.manual-content {
  flex: 1;
}

.manual-title-card {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.manual-title-card a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.manual-title-card a:hover {
  color: #FF1F66;
}

.manual-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.manual-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.manual-views {
  font-size: 13px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #FF1F66;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-read:hover {
  background: #E01857;
  transform: translateX(4px);
  color: white;
}

/* Contact Form */
.contact-form-box {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-form-box h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
}

.contact-form-box label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  display: block;
}

.contact-form-box .form-control {
  border: 2px solid #e5e5e5;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 15px;
}

.contact-form-box .form-control:focus {
  border-color: #FF1F66;
  box-shadow: 0 0 0 0.15rem rgba(255, 31, 102, 0.15);
}

/* Contact Info */
.contact-info-box {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 100px;
}

.contact-info-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item i {
  color: #FF1F66;
  font-size: 24px;
  width: 32px;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  color: #333;
  font-size: 14px;
  margin-bottom: 4px;
}

.contact-item p {
  color: #666;
  font-size: 15px;
  margin: 0;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #FF1F66 0%, #FF592A 100%);
  border: none;
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 31, 102, 0.4);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 991px) {
  .page-header {
    padding: 60px 0 40px;
  }

  .page-title {
    font-size: 32px;
  }

  .content-section {
    padding: 60px 0;
  }

  .category-title {
    font-size: 24px;
  }

  .contact-info-box {
    position: static;
    margin-top: 32px;
  }
}

@media (max-width: 767px) {
  .page-title {
    font-size: 28px;
  }

  .stat-number {
    font-size: 36px;
  }

  .feature-icon {
    width: 64px;
    height: 64px;
    font-size: 24px;
  }

  .manual-card {
    flex-direction: column;
    text-align: center;
  }

  .manual-icon-large {
    margin: 0 auto;
  }

  .manual-footer {
    flex-direction: column;
    gap: 12px;
  }

  .contact-form-box {
    padding: 24px;
  }
}