/* ===== INNER PAGES — MODERN UI ENHANCEMENTS ===== */

/* ── PAGE HERO ── */
.page-hero {
  min-height: 52vh !important;
  background: #040e1c !important;
  position: relative !important;
  display: flex !important;
  align-items: flex-end !important;
  padding-bottom: 72px !important;
  overflow: hidden !important;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(4,14,28,0.96) 0%, rgba(4,14,28,0.82) 50%, rgba(4,14,28,0.55) 100%);
  z-index: 1;
}
.page-hero > .shell {
  position: relative; z-index: 2;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 60px !important;
  align-items: end !important;
  padding-top: 140px !important;
}
.page-hero .eyebrow {
  font-size: 9px !important;
  letter-spacing: 0.18em !important;
  color: rgba(134,239,172,0.8) !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}
.page-hero .eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: rgba(134,239,172,0.5);
}
.page-hero h1 {
  font-size: clamp(44px, 6vw, 88px) !important;
  line-height: 0.93 !important;
  letter-spacing: -0.045em !important;
  font-weight: 400 !important;
  color: #fff !important;
  margin: 0 !important;
}
.page-hero p:not(.eyebrow) {
  font-size: 16px !important;
  line-height: 1.65 !important;
  color: rgba(192,208,220,0.88) !important;
  max-width: 480px !important;
  align-self: end !important;
  padding-bottom: 8px !important;
  border-left: 2px solid rgba(134,239,172,0.4) !important;
  padding-left: 20px !important;
}

/* ── CONTENT SECTIONS ── */
.content-section {
  background: #faf8f4 !important;
  padding: 100px 0 !important;
}
.prose {
  max-width: 820px !important;
  margin: 0 auto !important;
}
.prose h2 {
  font-size: clamp(28px, 3.5vw, 44px) !important;
  letter-spacing: -0.035em !important;
  font-weight: 400 !important;
  color: #040e1c !important;
  margin: 56px 0 16px !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  line-height: 1.1 !important;
}
.prose h2:first-child { margin-top: 0 !important; }
.prose p {
  font-size: 16px !important;
  line-height: 1.75 !important;
  color: #4a5664 !important;
  margin: 0 0 20px !important;
}
.prose hr {
  border: none !important;
  border-top: 1px solid rgba(4,14,28,0.08) !important;
  margin: 48px 0 !important;
}

/* ── INFO CARDS ── */
.content-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
  margin: 48px 0 !important;
}
.info-card {
  background: #fff !important;
  border: 1px solid rgba(4,14,28,0.07) !important;
  border-radius: 18px !important;
  padding: 36px 32px !important;
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94) !important;
  box-shadow: 0 4px 20px rgba(4,14,28,0.05) !important;
}
.info-card::after {
  content: '↗';
  position: absolute; top: 18px; right: 20px;
  font-size: 14px; color: rgba(100,116,139,0.35);
  transition: color 0.2s, transform 0.2s;
}
.info-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #22c55e, #86efac);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.info-card:hover::before { transform: scaleX(1); }
.info-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 24px 56px rgba(4,14,28,0.1) !important;
  border-color: rgba(34,197,94,0.15) !important;
}
.info-card:hover::after { color: #22c55e; transform: translate(2px,-2px); }
.info-card h3 {
  font-size: 22px !important;
  letter-spacing: -0.025em !important;
  font-weight: 400 !important;
  color: #040e1c !important;
  margin: 0 0 12px !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  line-height: 1.2 !important;
}
.info-card p {
  font-size: 13px !important;
  line-height: 1.65 !important;
  color: #64748b !important;
  margin: 0 !important;
}

/* ── DISCLOSURE BOX ── */
.disclosure {
  background: linear-gradient(135deg, #040e1c, #071a30) !important;
  color: rgba(192,208,220,0.9) !important;
  border-radius: 14px !important;
  padding: 28px 32px !important;
  font-size: 13px !important;
  line-height: 1.65 !important;
  border: none !important;
  border-left: 3px solid #22c55e !important;
  margin: 32px 0 !important;
}

/* ── NRI SERVICES GRID ── */
.service-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
  margin-top: 60px !important;
}
.service-item {
  background: #fff !important;
  border: 1px solid rgba(4,14,28,0.07) !important;
  border-radius: 18px !important;
  padding: 40px 32px !important;
  transition: all 0.35s ease !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(4,14,28,0.05) !important;
}
.service-item::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #22c55e, #86efac);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-item:hover::before { transform: scaleX(1); }
.service-item:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 24px 56px rgba(4,14,28,0.1) !important;
}
.service-item .step-no {
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  color: rgba(34,197,94,0.7) !important;
  margin-bottom: 20px !important;
  display: block !important;
}
.service-item h3 {
  font-size: 22px !important;
  letter-spacing: -0.025em !important;
  font-weight: 400 !important;
  color: #040e1c !important;
  margin: 0 0 12px !important;
  font-family: 'Playfair Display', Georgia, serif !important;
}
.service-item p {
  font-size: 13px !important;
  line-height: 1.65 !important;
  color: #64748b !important;
  margin: 0 !important;
}

/* ── INSIGHTS ARTICLES ── */
.article-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 16px !important;
  margin-top: 60px !important;
}
.article-card {
  background: #fff !important;
  border: 1px solid rgba(4,14,28,0.07) !important;
  border-radius: 18px !important;
  padding: 40px 36px !important;
  transition: all 0.35s ease !important;
  box-shadow: 0 4px 20px rgba(4,14,28,0.05) !important;
  position: relative !important;
  overflow: hidden !important;
}
.article-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #22c55e, #86efac);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.article-card:hover::before { transform: scaleX(1); }
.article-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 24px 56px rgba(4,14,28,0.1) !important;
}
.article-card .read-time {
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  color: rgba(34,197,94,0.8) !important;
  margin-bottom: 16px !important;
  display: block !important;
  text-transform: uppercase !important;
}
.article-card h3 {
  font-size: 26px !important;
  letter-spacing: -0.03em !important;
  font-weight: 400 !important;
  color: #040e1c !important;
  margin: 0 0 12px !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  line-height: 1.2 !important;
}
.article-card p {
  font-size: 13px !important;
  line-height: 1.65 !important;
  color: #64748b !important;
  margin: 0 0 24px !important;
}
.article-card a {
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  color: #16a34a !important;
  transition: color 0.2s !important;
}
.article-card a:hover { color: #22c55e !important; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid !important;
  grid-template-columns: 1fr 1.2fr !important;
  gap: 60px !important;
  align-items: start !important;
}
.contact-details-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
  margin-top: 32px !important;
}
.contact-chip {
  background: #fff !important;
  border: 1px solid rgba(4,14,28,0.08) !important;
  border-radius: 14px !important;
  padding: 20px 22px !important;
  transition: all 0.3s ease !important;
}
.contact-chip:hover {
  border-color: rgba(34,197,94,0.25) !important;
  box-shadow: 0 8px 24px rgba(4,14,28,0.07) !important;
}
.contact-chip dt {
  font-size: 8px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  color: rgba(34,197,94,0.8) !important;
  text-transform: uppercase !important;
  margin-bottom: 8px !important;
}
.contact-chip dd {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #040e1c !important;
  margin: 0 !important;
}
.consultation-form {
  background: #fff !important;
  border-radius: 22px !important;
  padding: 48px !important;
  border: 1px solid rgba(4,14,28,0.07) !important;
  box-shadow: 0 16px 56px rgba(4,14,28,0.08) !important;
}
.consultation-form h3 {
  font-size: 11px !important;
  letter-spacing: 0.14em !important;
  font-weight: 700 !important;
  color: rgba(34,197,94,0.8) !important;
  text-transform: uppercase !important;
  margin-bottom: 28px !important;
}

/* ── PROJECTS PAGE ── */
.projects-section {
  background: linear-gradient(180deg, #eef3f0 0%, #e6ede8 100%) !important;
  padding: 100px 0 !important;
}
.project-filters {
  display: flex !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
  margin-bottom: 48px !important;
}

/* ── FAQ PAGE ── */
.faq-section {
  background: #faf8f4 !important;
  padding: 100px 0 !important;
}
.faq-grid-layout {
  display: grid !important;
  grid-template-columns: 0.4fr 1fr !important;
  gap: 80px !important;
  align-items: start !important;
}
.faq-intro h2 {
  font-size: clamp(32px, 4vw, 52px) !important;
  letter-spacing: -0.04em !important;
  font-weight: 400 !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  line-height: 1.05 !important;
  color: #040e1c !important;
}

/* ── FOOTER LOGO FIX (inner pages) ── */
.footer-top img {
  width: auto !important;
  height: 52px !important;
  max-width: 200px !important;
  object-fit: contain !important;
  filter: none !important;
  opacity: 1 !important;
  background: #fff !important;
  border-radius: 10px !important;
  padding: 6px 12px !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25) !important;
  display: block !important;
}

/* ── SECTION DIVIDERS ── */
.section-divider {
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(4,14,28,0.1), transparent) !important;
  margin: 0 !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .page-hero > .shell { grid-template-columns: 1fr !important; gap: 32px !important; }
  .content-grid { grid-template-columns: 1fr !important; }
  .service-grid { grid-template-columns: 1fr 1fr !important; }
  .article-grid { grid-template-columns: 1fr !important; }
  .contact-grid { grid-template-columns: 1fr !important; }
  .faq-grid-layout { grid-template-columns: 1fr !important; gap: 40px !important; }
}
@media (max-width: 700px) {
  .page-hero { min-height: 60vh !important; padding-bottom: 52px !important; }
  .page-hero h1 { font-size: clamp(38px, 10vw, 56px) !important; }
  .service-grid { grid-template-columns: 1fr !important; }
  .consultation-form { padding: 32px 24px !important; border-radius: 16px !important; }
  .contact-details-grid { grid-template-columns: 1fr !important; }
}
