/* ============================================================
   Shared stylesheet for SEO landing pages
   My Australian Passport Photo
   Colors: navy #0a192f | primary #137fec | teal #2dd4bf
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1e293b;
  background: #ffffff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: #137fec; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: 860px; margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.875rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none !important;
}
.logo-icon {
  background: #0a192f;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  flex-shrink: 0;
}
.logo-text {
  font-size: 0.9rem;
  font-weight: 900;
  color: #0a192f;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.header-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
}
.header-nav a { color: #64748b; }
.header-nav a:hover { color: #137fec; text-decoration: none; }

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb-bar { background: #f8fafc; border-bottom: 1px solid #e2e8f0; padding: 0.6rem 0; }
.breadcrumb {
  font-size: 0.78rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.breadcrumb a { color: #94a3b8; }
.breadcrumb a:hover { color: #137fec; text-decoration: none; }
.breadcrumb .sep { margin: 0 0.1rem; opacity: 0.5; }

/* ── Hero ────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #e8f4ff 100%);
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid #e2e8f0;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(19, 127, 236, 0.1);
  color: #137fec;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.6rem);
  font-weight: 900;
  color: #0a192f;
  line-height: 1.15;
  margin-bottom: 0.875rem;
}
.page-hero .lead {
  font-size: 1.05rem;
  color: #475569;
  max-width: 680px;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #137fec;
  color: #fff !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none !important;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 18px rgba(19, 127, 236, 0.35);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 26px rgba(19, 127, 236, 0.45);
  text-decoration: none !important;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #0a192f;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.6rem 1.25rem;
  border-radius: 0.5rem;
  text-decoration: none !important;
}

/* ── Content sections ────────────────────────────────────── */
.content-body { padding: 2.5rem 0; }
.content-body h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #0a192f;
  margin: 2rem 0 0.75rem;
  padding-top: 0.5rem;
}
.content-body h2:first-child { margin-top: 0; }
.content-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a192f;
  margin: 1.5rem 0 0.5rem;
}
.content-body p {
  color: #475569;
  margin-bottom: 0.9rem;
  font-size: 0.975rem;
}
.content-body section { margin-bottom: 2rem; }

/* ── Spec table ──────────────────────────────────────────── */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.9rem;
}
.spec-table th {
  background: #0a192f;
  color: #fff;
  padding: 0.6rem 1rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.spec-table td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid #e2e8f0;
  color: #334155;
}
.spec-table tr:nth-child(even) td { background: #f8fafc; }

/* ── Checklists ──────────────────────────────────────────── */
.checklist {
  list-style: none;
  margin: 0.75rem 0 1.25rem;
}
.checklist li {
  padding: 0.375rem 0 0.375rem 1.75rem;
  position: relative;
  color: #334155;
  font-size: 0.95rem;
}
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #137fec;
  font-weight: 900;
  font-size: 0.9rem;
}
.checklist.reject li::before {
  content: '✗';
  color: #ef4444;
}

/* ── Info / Warning boxes ────────────────────────────────── */
.info-box {
  background: #eff6ff;
  border-left: 4px solid #137fec;
  padding: 0.875rem 1.25rem;
  border-radius: 0 0.5rem 0.5rem 0;
  margin: 1.25rem 0;
}
.info-box p { color: #1e40af; font-size: 0.875rem; margin: 0; }
.warning-box {
  background: #fff7ed;
  border-left: 4px solid #f97316;
  padding: 0.875rem 1.25rem;
  border-radius: 0 0.5rem 0.5rem 0;
  margin: 1.25rem 0;
}
.warning-box p { color: #9a3412; font-size: 0.875rem; margin: 0; }

/* ── CTA section ─────────────────────────────────────────── */
.cta-section {
  background: #0a192f;
  padding: 3rem 0;
  text-align: center;
  margin: 3rem 0 0;
}
.cta-section h2 { color: #fff; font-size: 1.6rem; margin-bottom: 0.6rem; }
.cta-section p { color: #94a3b8; margin-bottom: 1.5rem; font-size: 0.975rem; }
.cta-section .price-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #64748b;
}

/* ── FAQ section ─────────────────────────────────────────── */
.faq-section {
  background: #f8fafc;
  padding: 2.5rem 0;
  border-top: 1px solid #e2e8f0;
}
.faq-section h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #0a192f;
  text-align: center;
  margin-bottom: 2rem;
}
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1.125rem 1.375rem;
  margin-bottom: 0.875rem;
}
.faq-item h3 {
  color: #0a192f;
  font-size: 0.975rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
}
.faq-item p { color: #475569; font-size: 0.9rem; margin: 0; }

/* ── Related pages ───────────────────────────────────────── */
.related-section {
  padding: 2.5rem 0;
  border-top: 1px solid #e2e8f0;
}
.related-section h2 {
  font-size: 1.3rem;
  font-weight: 900;
  color: #0a192f;
  margin-bottom: 1.25rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 0.875rem;
}
.related-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1rem 1.125rem;
  display: block;
  text-decoration: none !important;
  transition: border-color 0.15s, transform 0.15s;
}
.related-card:hover {
  border-color: #137fec;
  transform: translateY(-2px);
}
.related-card-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0a192f;
  display: block;
  margin-bottom: 0.25rem;
}
.related-card-desc { font-size: 0.8rem; color: #64748b; }

/* ── Guide cards (guides hub) ────────────────────────────── */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.guide-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.375rem 1.5rem;
  display: block;
  text-decoration: none !important;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.guide-card:hover {
  border-color: #137fec;
  box-shadow: 0 4px 20px rgba(19, 127, 236, 0.12);
  transform: translateY(-2px);
  text-decoration: none !important;
}
.guide-card-tag {
  display: inline-block;
  background: rgba(19, 127, 236, 0.1);
  color: #137fec;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.625rem;
}
.guide-card-title {
  font-size: 1rem;
  font-weight: 900;
  color: #0a192f;
  display: block;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.guide-card-desc { font-size: 0.875rem; color: #64748b; line-height: 1.5; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: #fff;
  border-top: 1px solid #e2e8f0;
  padding: 2rem 0 1rem;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-brand p {
  font-size: 0.8rem;
  color: #94a3b8;
  margin: 0.5rem 0 0;
  max-width: 280px;
  line-height: 1.5;
}
.footer-links h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  margin-bottom: 0.75rem;
}
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 0.4rem; }
.footer-links ul li a { font-size: 0.85rem; color: #475569; }
.footer-links ul li a:hover { color: #137fec; text-decoration: none; }
.footer-bottom {
  max-width: 1160px;
  margin: 1.25rem auto 0;
  padding: 1rem 1.5rem 0;
  border-top: 1px solid #f1f5f9;
  font-size: 0.75rem;
  color: #94a3b8;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.disclaimer {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 0.625rem 0.875rem;
  margin-top: 0.75rem;
}
.disclaimer p { font-size: 0.75rem; color: #64748b; margin: 0; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 640px) {
  .header-nav { display: none; }
  .page-hero { padding: 1.75rem 0 1.5rem; }
  .content-body { padding: 1.75rem 0; }
  .footer-inner { flex-direction: column; gap: 1.25rem; }
  .footer-bottom { flex-direction: column; }
}
