/* Page Hero / Breadcrumb Banner */
.page-hero {
  background: linear-gradient(135deg, #162d4f 0%, #204170 60%, #2d5a9e 100%);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
	45deg, transparent, transparent 30px,
	rgba(255,255,255,0.02) 30px, rgba(255,255,255,0.02) 31px
  );
}

.page-hero-shape {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  pointer-events: none;
}

.page-hero-shape-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  bottom: -80px;
  left: -50px;
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 550px;
  line-height: 1.75;
}

/* Breadcrumb */
.breadcrumb-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.breadcrumb-wrap a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.breadcrumb-wrap a:hover { color: #ffffff; }

.breadcrumb-wrap .separator {
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
}

.breadcrumb-wrap .current {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 600;
}

/* ============ CONTENT CARD ============ */
.content-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 28px;
}

.content-card h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #204170;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}

.content-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #204170;
  margin: 24px 0 10px;
}

.content-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-card p:last-child { margin-bottom: 0; }

/* ============ SIDEBAR ============ */
.sidebar-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.sidebar-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #204170;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

/* Quick Contact Form */
.sidebar-form .form-control-custom {
  margin-bottom: 12px;
  width: 100%;
}

.sidebar-submit {
  width: 100%;
  background: linear-gradient(135deg, #204170, #2d5a9e);
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(32,65,112,0.25);
}

.sidebar-submit:hover {
  background: linear-gradient(135deg, #162d4f, #204170);
  transform: translateY(-1px);
}

/* Quick Links */
.quick-links { list-style: none; padding: 0; margin: 0; }

.quick-links li {
  border-bottom: 1px solid var(--border);
}

.quick-links li:last-child { border-bottom: none; }

.quick-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  color: #204170;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.quick-links a:hover {
  color: #162d4f;
  padding-left: 6px;
}

.quick-links a i {
  font-size: 0.75rem;
  opacity: 0.5;
}

/* Contact Info Sidebar */
.sidebar-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.sidebar-contact-item:last-child { border-bottom: none; }

.sidebar-contact-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: rgba(32,65,112,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #204170;
  font-size: 0.9rem;
}

.sidebar-contact-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 3px;
}

.sidebar-contact-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  display: block;
}

.sidebar-contact-value a {
  color: #204170;
  text-decoration: none;
}

/* ============ FEATURE LIST ============ */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.feature-list li:last-child { border-bottom: none; }

.feature-list li i {
  color: #204170;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ============ INFO BOXES ============ */
.info-box {
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-box.blue {
  background: rgba(32,65,112,0.06);
  border-left: 4px solid #204170;
}

.info-box.green {
  background: rgba(74,222,128,0.08);
  border-left: 4px solid #4ade80;
}

.info-box.orange {
  background: rgba(255,165,0,0.08);
  border-left: 4px solid #ffa500;
}

.info-box i {
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.info-box.blue i { color: #204170; }
.info-box.green i { color: #22c55e; }
.info-box.orange i { color: #f97316; }

.info-box-text h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.info-box-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* ============ TEAM CARD ============ */
.team-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.team-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.team-card-body {
  padding: 24px 20px;
}

.team-card-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #204170;
  margin-bottom: 4px;
}

.team-card-role {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============ PAGE NAV (Prev/Next) ============ */
.page-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border-radius: var(--radius);
  padding: 18px 22px;
  text-decoration: none;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.page-nav-link:hover {
  border-color: #204170;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.page-nav-icon {
  width: 42px;
  height: 42px;
  background: rgba(32,65,112,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #204170;
  flex-shrink: 0;
}

.page-nav-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
}

.page-nav-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #204170;
  display: block;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
  .content-card { padding: 32px 24px; }
  .sidebar-card { padding: 24px 20px; }
  .page-hero { padding: 140px 0 60px; }
}

@media (max-width: 767px) {
  .content-card { padding: 24px 18px; }
  .content-card h2 { font-size: 1.5rem; }
  .page-hero { padding: 120px 0 50px; }
  .page-hero h1 { font-size: 1.9rem; }
}