/* ── INNER PAGES SHARED CSS ── */

.inner-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* TWO COL */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.img-wrap img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(8,43,85,0.15);
  display: block;
}

/* SKILLS GRID */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.skill-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.22s, box-shadow 0.22s;
}

.skill-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37,99,168,0.2);
}

.skill-icon {
  font-size: 34px;
  margin-bottom: 14px;
  line-height: 1;
}

.skill-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.skill-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* DARK SECTION */
.dark-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 60%, var(--blue) 100%);
}

.light-label { color: rgba(183,210,238,0.8) !important; }
.light-title { color: var(--white) !important; }
.light-lead { color: rgba(219,231,246,0.8) !important; }

.who-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.who-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.2s;
}

.who-card:hover { background: rgba(255,255,255,0.13); }

.who-card span { font-size: 30px; line-height: 1; }
.who-card b { color: var(--white); font-size: 15px; font-weight: 700; line-height: 1.4; }

/* VALIDITY */
.validity-block {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: center;
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 56px 52px;
}

.validity-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.6;
}

.validity-badge {
  text-align: center;
  background: linear-gradient(135deg, var(--dark), var(--navy));
  border-radius: 24px;
  padding: 44px 32px;
  box-shadow: var(--shadow-lg);
}

.badge-num {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 96px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.badge-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: rgba(183,210,238,0.8);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 10px;
}

/* FAQ */
.faq-bg {
  background: var(--ice);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.faq-list { display: grid; gap: 12px; max-width: 820px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.18s;
}

.faq-item summary:hover { background: var(--ice); }

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--mid);
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

/* PROCESS PAGE */
.process-steps {
  display: grid;
  gap: 24px;
  max-width: 860px;
}

.process-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.process-step:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dark), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.step-body h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.step-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* DOCS */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.doc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--mid);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.doc-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.doc-item span {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

/* TEAM PAGE */
.team-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.team-details {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.team-detail-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  padding: 16px 20px;
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.detail-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid);
  padding-top: 2px;
}

.detail-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

.team-img-wrap {
  position: sticky;
  top: 100px;
}

.team-img-wrap img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  display: block;
}

.team-img-wrap .img-caption {
  margin-top: 16px;
  padding: 20px;
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-info-rows {
  display: grid;
  gap: 16px;
  margin: 28px 0;
}

.contact-info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ci-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ci-body b {
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid);
  margin-bottom: 4px;
}

.ci-body p, .ci-body a {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  line-height: 1.55;
  display: block;
}

.ci-body a:hover { color: var(--mid); }

.map-section {
  background: linear-gradient(135deg, var(--dark), var(--navy));
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.map-section h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.map-section p {
  color: rgba(219,231,246,0.78);
  font-size: 15px;
  line-height: 1.65;
}

/* RESPONSIVE INNER */
@media (max-width: 900px) {
  .two-col,
  .validity-block,
  .team-hero-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }

  .team-img-wrap { position: static; }
  .skills-grid,
  .who-cards,
  .docs-grid { grid-template-columns: repeat(2, 1fr); }
  .validity-badge { padding: 32px; }
  .badge-num { font-size: 72px; }
}

@media (max-width: 560px) {
  .skills-grid,
  .who-cards,
  .docs-grid { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 1fr; }
  .validity-block { padding: 32px 24px; }
}
