/* === Inner Pages === */

/* Page Header — plain fallback */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 48px 0;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 8px;
}

.page-header p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 600px;
}

/* Page Hero — full-width image with overlay */
.page-hero {
  position: relative;
  padding: 100px 0 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,34,68,0.92) 0%, rgba(0,51,102,0.82) 50%, rgba(0,119,136,0.72) 100%);
  z-index: 1;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white) 0%, transparent 100%);
  z-index: 2;
}

.page-hero .container {
  position: relative;
  z-index: 3;
}

.page-hero h1 {
  color: var(--white);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.page-hero .hero-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  max-width: 640px;
  line-height: 1.7;
}

.page-hero .hero-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(200,150,62,0.4);
  border-radius: 20px;
  backdrop-filter: blur(4px);
  background: rgba(200,150,62,0.1);
}

/* Animated decorative line */
.page-hero .hero-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-top: 24px;
  border-radius: 2px;
  animation: lineGrow 1s ease-out 0.5s both;
}

@keyframes lineGrow {
  from { width: 0; opacity: 0; }
  to { width: 60px; opacity: 1; }
}

/* Floating particles on hero */
.page-hero .float-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  z-index: 2;
  animation: floatUp 8s ease-in-out infinite;
}

.page-hero .float-dot:nth-child(1) {
  width: 200px;
  height: 200px;
  top: -60px;
  right: 10%;
  animation-delay: 0s;
}

.page-hero .float-dot:nth-child(2) {
  width: 120px;
  height: 120px;
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

.page-hero .float-dot:nth-child(3) {
  width: 80px;
  height: 80px;
  top: 30%;
  right: 25%;
  animation-delay: 4s;
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

/* Breadcrumb — enhanced */
.breadcrumb {
  padding: 14px 0;
  font-size: 0.85rem;
  color: #888;
  border-bottom: 1px solid var(--border-color);
  background: var(--white);
}

.breadcrumb a {
  color: var(--teal);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--navy);
}

.breadcrumb .separator {
  margin: 0 8px;
  color: #ccc;
}

.breadcrumb .current {
  color: var(--navy);
  font-weight: 600;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-info h3 {
  margin-bottom: 20px;
}

.contact-detail {
  margin-bottom: 20px;
}

.contact-detail h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-detail p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Inquiry Form */
.inquiry-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* CEO Message */
.ceo-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}

.ceo-portrait .img-placeholder {
  width: 100%;
  height: 380px;
}

.ceo-portrait h3 {
  margin-top: 16px;
  margin-bottom: 4px;
}

.ceo-portrait .title {
  font-size: 0.9rem;
  color: var(--teal);
  font-weight: 600;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Consulting Page */
.service-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--border-color);
}

.service-section:last-child {
  border-bottom: none;
}

.service-section h3 {
  color: var(--navy);
  margin-bottom: 12px;
}

.deliverables {
  margin-top: 16px;
  padding-left: 0;
}

.deliverables li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #555;
}

.deliverables li::before {
  content: '\2013';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* Impact Page */
.impact-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Blog Page */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  font-size: 1.375rem;
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 0.95rem;
  color: #555;
}

.legal-content ul {
  margin: 12px 0 16px 20px;
}

.legal-content ul li {
  list-style: disc;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 6px;
}
