/* ===== Shared Info Page Styles ===== */
.info-hero-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}
.info-hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}
.info-hero-section p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}
.info-hero-section .info-hero-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9973a;
  margin-bottom: 12px;
}
.info-section {
  padding: 70px 0;
}
.info-section.alt-bg {
  background: #f8fafc;
}
.info-section-header {
  text-align: center;
  margin-bottom: 50px;
}
.info-section-header .section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9973a;
  margin-bottom: 10px;
}
.info-section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: #111827;
  margin-bottom: 12px;
}
.info-section-header p {
  color: #64748b;
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}
.info-text-block {
  max-width: 860px;
  margin: 0 auto;
}
.info-text-block p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #475569;
  margin-bottom: 20px;
}
.info-text-block h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 30px 0 15px;
  font-family: 'Playfair Display', serif;
}

/* About: Mission/Vision cards */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.mv-card {
  background: white;
  border-radius: 16px;
  padding: 35px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(15,23,42,0.06);
}
.mv-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #c9973a;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}
.mv-card p {
  color: #475569;
  line-height: 1.8;
  margin: 0;
}

/* About: Content pillars */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar-card {
  background: white;
  border-radius: 14px;
  padding: 28px;
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15,23,42,0.1);
}
.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fef3c7;
  color: #c9973a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px;
}
.pillar-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}
.pillar-card p {
  font-size: 0.92rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* About: Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-box {
  background: white;
  border-radius: 16px;
  padding: 40px 24px;
  border: 1px solid #e5e7eb;
}
.stat-box .stat-num {
  font-size: 2.75rem;
  font-weight: 700;
  color: #c9973a;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}
.stat-box .stat-text {
  font-size: 1rem;
  color: #475569;
  font-weight: 600;
}

/* About: Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.value-card {
  background: white;
  border-radius: 14px;
  padding: 28px;
  border-left: 4px solid #c9973a;
  box-shadow: 0 4px 16px rgba(15,23,42,0.05);
}
.value-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}
.value-card p {
  color: #64748b;
  line-height: 1.7;
  margin: 0;
  font-size: 0.98rem;
}

/* About: Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(15,23,42,0.06);
  transition: transform 0.25s ease;
}
.team-card:hover {
  transform: translateY(-4px);
}
.team-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.team-card-body {
  padding: 22px;
}
.team-card-body h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}
.team-card-body .team-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: #c9973a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.team-card-body p {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

/* About: Commitment list */
.commitment-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 760px;
  margin: 0 auto;
}
.commitment-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 1.02rem;
  color: #475569;
  line-height: 1.6;
}
.commitment-list li:last-child {
  border-bottom: none;
}
.commitment-list li i {
  color: #c9973a;
  margin-top: 4px;
  flex-shrink: 0;
}

/* About: Audience tags */
.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.audience-tag {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 0.95rem;
  color: #334155;
  font-weight: 600;
}

/* About: CTA */
.info-cta-box {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  color: white;
}
.info-cta-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 12px;
}
.info-cta-box p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.info-cta-box .cta-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.info-cta-box .cta-links a {
  color: #c9973a;
  font-weight: 600;
  text-decoration: none;
}
.info-cta-box .cta-links a:hover {
  text-decoration: underline;
}

/* Contact: Inquiry types */
.inquiry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.inquiry-card {
  background: white;
  border-radius: 14px;
  padding: 28px;
  border: 1px solid #e5e7eb;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.inquiry-card i {
  font-size: 1.5rem;
  color: #c9973a;
  margin-top: 4px;
  flex-shrink: 0;
}
.inquiry-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}
.inquiry-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

/* Contact: Details */
.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.contact-detail-card {
  background: white;
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  border: 1px solid #e5e7eb;
}
.contact-detail-card i {
  font-size: 1.6rem;
  color: #c9973a;
  margin-bottom: 14px;
}
.contact-detail-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-detail-card p,
.contact-detail-card a {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
  text-decoration: none;
}
.contact-detail-card a:hover {
  color: #c9973a;
}

/* Contact: Form */
.contact-form-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: white;
  border-radius: 18px;
  padding: 40px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(15,23,42,0.06);
}
.contact-form-wrap .form-label {
  font-weight: 600;
  color: #334155;
  font-size: 0.92rem;
}
.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
  border-radius: 8px;
  border: 1px solid #d1d5db;
  padding: 12px 16px;
}
.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
  border-color: #c9973a;
  box-shadow: 0 0 0 3px rgba(201,151,58,0.15);
}
.contact-submit-btn {
  background: #c9973a;
  color: white;
  border: none;
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.25s ease;
}
.contact-submit-btn:hover {
  background: #b8862f;
}
.form-note {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-top: 16px;
}

/* Contact: Social */
.social-coming-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.social-coming-item {
  background: white;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: #64748b;
  font-size: 0.92rem;
}
.social-coming-item i {
  font-size: 1.4rem;
  color: #c9973a;
  margin-bottom: 8px;
  display: block;
}
.social-coming-item strong {
  display: block;
  color: #334155;
  margin-bottom: 4px;
}

/* Contact: FAQ */
.faq-table-wrap {
  overflow-x: auto;
}
.faq-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}
.faq-table th,
.faq-table td {
  padding: 18px 22px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e5e7eb;
}
.faq-table th {
  background: #0f172a;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.faq-table td {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.65;
}
.faq-table td:first-child {
  font-weight: 600;
  color: #111827;
  width: 35%;
}
.faq-table tr:last-child td {
  border-bottom: none;
}

/* Legal pages (Privacy, Terms) */
.legal-page-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 0 100px;
}
.legal-page-wrap .legal-meta {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e5e7eb;
}
.legal-page-wrap .legal-intro {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #475569;
  margin-bottom: 30px;
}
.legal-section {
  margin-bottom: 36px;
}
.legal-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}
.legal-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #334155;
  margin: 20px 0 10px;
}
.legal-section p {
  font-size: 1rem;
  line-height: 1.85;
  color: #475569;
  margin-bottom: 14px;
}
.legal-section ul {
  padding-left: 24px;
  margin-bottom: 14px;
}
.legal-section ul li {
  font-size: 1rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 6px;
}
.legal-section a {
  color: #c9973a;
  text-decoration: none;
}
.legal-section a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-details-grid { grid-template-columns: repeat(2, 1fr); }
  .social-coming-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .info-hero-section h1 { font-size: 2.2rem; }
  .info-hero-section { padding: 60px 0; }
  .mv-grid,
  .values-grid,
  .inquiry-grid { grid-template-columns: 1fr; }
  .pillar-grid,
  .stats-grid,
  .team-grid,
  .contact-details-grid,
  .social-coming-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .info-cta-box { padding: 32px 24px; }
  .faq-table td:first-child { width: auto; }
}
