/* ============================================================
   NLF CONSULTANCY — inner.css
   Styles for all inner pages (about, service pages)
   ============================================================ */

/* ── Page Hero Banner ─────────────────────────────────────── */
.page-hero {
    background: #0f1f3d;
    background-image: url('../images/hero-1.jpg');
    background-size: cover;
    background-position: center top;
    position: relative;
    padding: 64px 40px 56px;
  }
  .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(10,20,50,0.92) 0%, rgba(10,20,50,0.75) 100%);
  }
  .page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
  }
  .page-breadcrumb {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 12px;
    letter-spacing: 0.3px;
  }
  .page-breadcrumb a { color: rgba(255,255,255,0.45); }
  .page-breadcrumb a:hover { color: #e8192c; }
  .page-breadcrumb span { color: #e8192c; }
  .page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
  }
  .page-hero-tag {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 5px 14px;
  }
  .page-hero-tag--sebi {
    background: rgba(26,95,175,0.2);
    color: #7ab0ef;
    border: 1px solid rgba(26,95,175,0.3);
  }
  .page-hero-tag--advisory {
    background: rgba(30,107,74,0.2);
    color: #7acfa9;
    border: 1px solid rgba(30,107,74,0.3);
  }
  .page-hero-tag svg { width: 12px; height: 12px; fill: currentColor; }
  
  
  /* ── Inner Layout ─────────────────────────────────────────── */
  .inner-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: start;
  }
  
  /* ── Main Content ─────────────────────────────────────────── */
  .inner-content {}
  .inner-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #0f1f3d;
    margin-bottom: 16px;
    font-weight: 500;
  }
  .inner-content h3 {
    font-family: 'DM Sans', serif;
    font-size: 17px;
    color: #0f1f3d;
    margin: 28px 0 10px;
    font-weight: 500;
  }
  .inner-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
  }
  .inner-content ul {
    list-style: none;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .inner-content ul li {
    font-size: 14.5px;
    color: #555;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
  }
  .inner-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: #e8192c;
    border-radius: 50%;
  }
  
  /* What we offer grid */
  .offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
  }
  .offer-card {
    background: #f8f8fa;
    border-left: 3px solid #e8192c;
    padding: 18px 20px;
  }
  .offer-card h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #0f1f3d;
    margin-bottom: 6px;
  }
  .offer-card p {
    font-size: 13px;
    color: #888;
    margin: 0;
    line-height: 1.6;
  }
  .offer-card--ecm { border-left-color: #1a5faf; }
  .offer-card--dcm { border-left-color: #1e6b4a; }
  
  /* Process steps */
  .process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 24px 0;
    counter-reset: step;
  }
  .process-step {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
  }
  .process-step:last-child { border-bottom: none; }
  .process-step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #0f1f3d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    margin-top: 2px;
  }
  .process-step-content h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    color: #0f1f3d;
    margin-bottom: 5px;
  }
  .process-step-content p {
    font-size: 13.5px;
    color: #888;
    margin: 0;
    line-height: 1.65;
  }
  
  /* Page-level CTA */
  .inner-cta {
    background: #0f1f3d;
    padding: 32px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  .inner-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #fff;
    font-weight: 500;
  }
  .inner-cta p { font-size: 13.5px; color: rgba(255,255,255,0.55); margin-top: 4px; }
  
  
  /* ── Sidebar ──────────────────────────────────────────────── */
  .inner-sidebar {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .sidebar-section {
    background: #fff;
    border: 1px solid #e8e8ec;
    overflow: hidden;
  }
  .sidebar-section-title {
    background: #0f1f3d;
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 7px;
  }
  .sidebar-sub-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #bbb;
    padding: 10px 16px 4px;
    background: #f9f9f9;
  }
  .sidebar-svc-link {
    display: block;
    font-size: 13px;
    color: #555;
    padding: 10px 16px;
    border-bottom: 1px solid #f5f5f5;
    border-left: 2px solid transparent;
    transition: all 0.15s;
    text-decoration: none;
  }
  .sidebar-svc-link:last-child { border-bottom: none; }
  .sidebar-svc-link:hover { color: #0f1f3d; border-left-color: #e8192c; background: #fafafa; }
  .sidebar-svc-link.active { color: #e8192c; border-left-color: #e8192c; background: #fff5f5; font-weight: 500; }
  
  .sidebar-cta {
    background: #0f1f3d;
    padding: 24px 20px;
  }
  .sidebar-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #fff;
    margin-bottom: 8px;
  }
  .sidebar-cta p { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 16px; line-height: 1.6; }
  .sidebar-cta-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    margin-bottom: 8px;
  }
  .sidebar-cta-phone svg { width: 14px; height: 14px; fill: #e8192c; }
  .sidebar-cta-email {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    margin-bottom: 18px;
  }
  .sidebar-cta-email:hover { color: #fff; }
  .sidebar-cta-btn {
    display: block;
    background: #e8192c;
    color: #fff;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 11px;
    text-decoration: none;
    transition: background 0.2s;
  }
  .sidebar-cta-btn:hover { background: #c4121f; }
  
  
  /* ── About Page ───────────────────────────────────────────── */
  .about-section { padding: 60px 0; }
  .about-section:nth-child(even) { background: #f8f8fa; }
  
  .about-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }
  
  .about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 32px;
  }
  .about-intro-img {
    background: #e8e8ec;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 13px;
  }
  .about-intro-img img { width: 100%; height: 100%; object-fit: cover; }
  
  .vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
  }
  .vm-card {
    padding: 32px;
    border-top: 3px solid #e8192c;
  }
  .vm-card--vision { background: #0f1f3d; }
  .vm-card--mission { background: #f8f8fa; border-top-color: #0f1f3d; }
  .vm-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 20px;
  }
  .vm-card--vision h3 { color: #fff; }
  .vm-card--mission h3 { color: #0f1f3d; }
  .vm-card ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
  .vm-card--vision li { font-size: 14.5px; color: rgba(255,255,255,0.7); padding-left: 18px; position: relative; line-height: 1.65; }
  .vm-card--vision li::before { content:''; position:absolute; left:0; top:9px; width:5px; height:5px; background:#e8192c; border-radius:50%; }
  .vm-card--mission p { font-size: 14.5px; color: #666; line-height: 1.75; }
  
  /* Team */
  .team-grid { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
  .team-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
    align-items: start;
  }
  .team-card:last-child { border-bottom: none; }
  .team-photo {
    width: 160px;
    height: 190px;
    object-fit: cover;
    object-position: center top;
    background: #e8e8ec;
  }
  .team-photo-placeholder {
    width: 160px;
    height: 190px;
    background: #e8e8ec;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .team-photo-placeholder svg { width: 48px; height: 48px; fill: #bbb; }
  .team-info {}
  .team-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #0f1f3d;
    margin-bottom: 4px;
  }
  .team-creds {
    font-size: 12.5px;
    color: #e8192c;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-bottom: 4px;
  }
  .team-role {
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
    font-style: italic;
  }
  .team-bio {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
  }
  
  /* Alliances */
  .alliances-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
  }
  .alliance-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 28px 24px;
    text-align: center;
  }
  .alliance-card h4 {
    font-size: 14px;
    font-weight: 500;
    color: #0f1f3d;
    margin-bottom: 8px;
  }
  .alliance-card p { font-size: 13px; color: #888; line-height: 1.6; }
  
  
  /* ── Mobile inner pages ───────────────────────────────────── */
  @media (max-width: 900px) {
    .page-hero { padding: 48px 20px 40px; }
    .page-hero h1 { font-size: 28px; }
    .inner-layout { grid-template-columns: 1fr; padding: 40px 20px; gap: 40px; }
    .inner-sidebar { position: static; }
    .about-inner { padding: 0 20px; }
    .about-intro-grid { grid-template-columns: 1fr; gap: 32px; }
    .vision-mission-grid { grid-template-columns: 1fr; }
    .team-card { grid-template-columns: 120px 1fr; gap: 24px; padding: 28px 0; }
    .team-photo, .team-photo-placeholder { width: 110px; height: 140px; }
    .team-name { font-size: 18px; }
    .alliances-grid { grid-template-columns: 1fr; }
    .offer-grid { grid-template-columns: 1fr; }
    .inner-cta { flex-direction: column; }
  }