/**
 * Unified inner page banner — matches Contact page dimensions
 */

.inner-page-hero {
  width: 100%;
  background-color: #15334d;
  background-image: linear-gradient(135deg, #15334d 0%, #1e4a6a 100%);
  background-repeat: no-repeat;
  padding: clamp(2.5rem, 6vh, 4rem) 0;
  min-height: clamp(200px, 28vh, 280px);
  display: flex;
  align-items: center;
  margin: 0 0 clamp(2rem, 4vh, 3rem);
  position: relative;
  overflow: hidden;
}

/* Tablet & desktop: innerbg.png with navy overlay */
@media (min-width: 768px) {
  .inner-page-hero {
    background-image:
      linear-gradient(135deg, rgba(15, 36, 56, 0.82) 0%, rgba(21, 51, 77, 0.75) 45%, rgba(30, 74, 106, 0.7) 100%),
      url('../images/innerbg.png');
    background-size: cover;
    background-position: center center;
  }
}

.inner-page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f7c637, #f9d66d, #f7c637);
  z-index: 2;
}

.inner-page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f7c637, #f9d66d, #f7c637);
  z-index: 2;
}

.inner-page-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1100px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.inner-page-hero__label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f7c637;
  margin-bottom: 0.75rem;
}

.inner-page-hero h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.inner-page-hero__lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.9375rem, 1.35vw, 1.0625rem);
  line-height: 1.55;
  margin: 0 auto;
  max-width: 52rem;
}

.inner-page-hero__extra {
  margin-top: 0.75rem;
}

.inner-page-hero__tier {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(247, 198, 55, 0.45);
  border-radius: 6px;
}

.inner-page-hero__tier i {
  color: #f7c637;
}

/* Kanyakumari: left-aligned breadcrumb inside same banner height */
.inner-page-hero--left .container {
  text-align: left;
  max-width: 900px;
}

.inner-page-hero--left .inner-page-hero__lead {
  margin-left: 0;
  max-width: 620px;
}

.inner-page-hero--left h1 strong {
  font-weight: 800;
}

.inner-page-hero--left h1 {
  font-weight: 400;
}

.page-inner .main-content {
  padding-top: 0;
}
