/* ══════════════════════════════════════
   ORE PART 2 — shared page styles
   Used by ore-part2.html and all city pages
══════════════════════════════════════ */

/* ── Navbar ── */
.navbar { background: #0F172A; border-bottom: 1px solid rgba(255,255,255,0.06); }
.navbar .nav-logo-text { color: white; }
.navbar .nav-logo-text span { color: #67E8F9; }
.nav-links a { color: rgba(255,255,255,0.75); }
.nav-links a:hover { color: white; }
.nav-links a.active { color: #67E8F9; }
.navbar .btn-outline { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); }
.navbar .btn-outline:hover { border-color: white; color: white; background: rgba(255,255,255,0.05); }

/* ── Hero ── */
.p2-hero {
  padding: 110px 0 80px;
  position: relative;
  overflow: hidden;
  background: #0F172A;
}
.p2-hero.has-bg::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(160deg, rgba(15,23,42,0.90) 0%, rgba(12,74,110,0.82) 50%, rgba(8,145,178,0.70) 100%),
    var(--p2-hero-img) center 30% / cover no-repeat;
}
.p2-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at 70% 30%, rgba(103,232,249,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.p2-hero .container { position: relative; z-index: 2; }
.p2-hero-inner { max-width: 760px; }
.p2-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(8,145,178,0.2); border: 1px solid rgba(8,145,178,0.4);
  color: #67E8F9; border-radius: 30px; padding: 7px 18px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 24px;
}
.p2-hero h1 {
  font-family: 'Lexend', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800; color: white; line-height: 1.15;
  margin-bottom: 20px;
}
.p2-hero h1 span { color: #67E8F9; }
.p2-hero p {
  color: rgba(255,255,255,0.8); font-size: 1.05rem;
  line-height: 1.8; max-width: 620px; margin-bottom: 36px;
}
.p2-hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.p2-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 8px;
  padding: 10px 16px; color: rgba(255,255,255,0.85); font-size: 0.83rem; font-weight: 500;
}
.p2-badge i { color: #67E8F9; font-size: 0.85rem; }
.p2-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Stats strip ── */
.p2-stats { background: linear-gradient(135deg, #0891B2, #0E7490); padding: 48px 0; }
.p2-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; text-align: center; }
.p2-stat-item { padding: 16px 20px; }
.p2-stat-item:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.15); }
.p2-stat-num {
  font-family: 'Lexend', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 800; color: white; line-height: 1.1; margin-bottom: 8px;
}
.p2-stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.75); }

/* ── Section tags ── */
.p2-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: #E0F7FA; color: #0E7490;
  border-radius: 20px; padding: 5px 14px;
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 16px;
}

/* ── Intro section ── */
.p2-intro { padding: 80px 0; background: white; }
.p2-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.p2-intro-copy h2 {
  font-family: 'Lexend', sans-serif;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 700; color: #0F172A; margin-bottom: 18px; line-height: 1.25;
}
.p2-intro-copy p { color: #334155; line-height: 1.8; margin-bottom: 16px; }
.p2-check-list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 12px; }
.p2-check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.92rem; color: #334155; line-height: 1.6; }
.p2-check-list li i { color: #0891B2; margin-top: 3px; flex-shrink: 0; }
.p2-intro-media { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(15,23,42,0.20); }
.p2-intro-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.p2-intro-card { background: #0F172A; border-radius: 20px; padding: 44px 36px; box-shadow: 0 20px 60px rgba(15,23,42,0.25); }
.p2-intro-card h3 { color: white; font-family: 'Lexend', sans-serif; margin-bottom: 28px; font-size: 1.15rem; text-align: center; }
.p2-card-row { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.p2-card-row:last-child { border-bottom: none; }
.p2-card-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(8,145,178,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.p2-card-icon i { color: #0891B2; font-size: 0.9rem; }
.p2-card-title { color: white; font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; }
.p2-card-text { color: rgba(255,255,255,0.55); font-size: 0.83rem; line-height: 1.6; }

/* ── Network section ── */
.p2-network { background: #F0F9FF; padding: 80px 0; }
.p2-network-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.p2-network-card { background: white; border-radius: 16px; border: 1px solid #E2E8F0; padding: 32px 28px; border-top: 4px solid #0891B2; box-shadow: 0 4px 20px rgba(0,0,0,0.04); transition: transform 0.25s, box-shadow 0.25s; }
.p2-network-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.09); }
.p2-net-icon { width: 52px; height: 52px; background: #E0F7FA; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: #0891B2; margin-bottom: 18px; }
.p2-network-card h4 { color: #0F172A; font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.p2-network-card p { color: #64748B; font-size: 0.88rem; line-height: 1.7; }

/* ── Modules section ── */
.p2-modules { padding: 80px 0; background: white; }
.p2-modules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.p2-module-card { background: white; border-radius: 16px; border: 1px solid #E2E8F0; padding: 28px 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.p2-module-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(8,145,178,0.1); border-color: #0891B2; }
.p2-module-icon { width: 48px; height: 48px; background: #E0F7FA; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: #0891B2; margin-bottom: 16px; }
.p2-module-card h4 { color: #0F172A; font-size: 0.97rem; font-weight: 700; margin-bottom: 10px; }
.p2-module-card p { color: #64748B; font-size: 0.86rem; line-height: 1.7; }

/* ── Photo strip ── */
.p2-photos { padding: 0; overflow: hidden; }
.p2-photo-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; height: 360px; }
.p2-photo { overflow: hidden; position: relative; }
.p2-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.p2-photo:hover img { transform: scale(1.05); }

/* ── Journey section ── */
.p2-journey { padding: 80px 0; background: #F8FAFC; }
.p2-journey-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: flex-start; }
.p2-step { display: flex; gap: 20px; align-items: flex-start; padding: 24px 0; border-bottom: 1px solid #E2E8F0; }
.p2-step:last-child { border-bottom: none; }
.p2-step-num { width: 48px; height: 48px; border-radius: 50%; background: #0891B2; color: white; font-family: 'Lexend', sans-serif; font-size: 1.2rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.p2-step h4 { color: #0F172A; font-weight: 700; margin-bottom: 6px; font-size: 0.97rem; }
.p2-step p { color: #64748B; font-size: 0.88rem; line-height: 1.7; }
.p2-facts-card { background: #0F172A; border-radius: 20px; padding: 40px 32px; position: sticky; top: 100px; box-shadow: 0 20px 60px rgba(15,23,42,0.2); }
.p2-facts-card h3 { color: white; font-family: 'Lexend', sans-serif; margin-bottom: 6px; text-align: center; }
.p2-facts-card .sub { color: rgba(255,255,255,0.45); font-size: 0.83rem; text-align: center; margin-bottom: 28px; }
.p2-fact-row { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.p2-fact-row:last-child { border-bottom: none; }
.p2-fact-label { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.p2-fact-label i { color: #0891B2; width: 18px; margin-right: 6px; }
.p2-fact-val { color: white; font-weight: 600; font-size: 0.88rem; }

/* ── Procedures ── */
.p2-procedures { padding: 80px 0; background: #0F172A; position: relative; overflow: hidden; }
.p2-procedures::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(8,145,178,0.08) 0%, transparent 70%); pointer-events: none; }
.p2-procedures .container { position: relative; }
.p2-proc-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.p2-proc-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.04); border: 1px solid rgba(8,145,178,0.25); border-radius: 8px; padding: 10px 16px; color: rgba(255,255,255,0.8); font-size: 0.85rem; transition: background 0.2s, border-color 0.2s; }
.p2-proc-pill:hover { background: rgba(8,145,178,0.15); border-color: rgba(8,145,178,0.5); }
.p2-proc-pill i { color: #0891B2; font-size: 0.7rem; }

/* ── Pricing ── */
.p2-pricing { padding: 80px 0; background: white; }
.p2-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; max-width: 960px; margin-left: auto; margin-right: auto; }
.p2-price-card { background: white; border-radius: 20px; padding: 36px 30px; border: 2px solid #E2E8F0; box-shadow: 0 4px 24px rgba(0,0,0,0.05); display: flex; flex-direction: column; transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s; position: relative; }
.p2-price-card:hover { border-color: #0891B2; transform: translateY(-4px); box-shadow: 0 16px 48px rgba(8,145,178,0.12); }
.p2-price-card.featured { border-color: #0891B2; }
.p2-price-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: #0891B2; color: white; border-radius: 20px; padding: 5px 18px; font-size: 0.72rem; font-weight: 700; white-space: nowrap; letter-spacing: 0.06em; text-transform: uppercase; }
.p2-price-tier { font-size: 0.78rem; font-weight: 700; color: #0891B2; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.p2-price-num { font-family: 'Lexend', sans-serif; font-size: 2.4rem; font-weight: 800; color: #0F172A; line-height: 1; margin: 12px 0 6px; }
.p2-price-sub { font-size: 0.84rem; color: #64748B; margin-bottom: 24px; }
.p2-price-features { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.p2-price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.87rem; color: #334155; line-height: 1.5; }
.p2-price-features li i { color: #0891B2; margin-top: 2px; flex-shrink: 0; }

/* ── Cities ── */
.p2-cities { padding: 80px 0; background: #F0F9FF; }
.p2-city-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 36px; }
.p2-city-pill { display: inline-flex; align-items: center; gap: 7px; background: white; border: 1px solid #E2E8F0; border-radius: 50px; padding: 10px 20px; color: #334155; font-size: 0.88rem; font-weight: 500; transition: background 0.2s, border-color 0.2s, color 0.2s; text-decoration: none; }
.p2-city-pill:hover { background: #0891B2; border-color: #0891B2; color: white; }
.p2-city-pill i { color: #0891B2; font-size: 0.75rem; }
.p2-city-pill:hover i { color: white; }

/* ── CTA section ── */
.p2-cta { padding: 80px 0; background: #0F172A; position: relative; overflow: hidden; }
.p2-cta::before { content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%); width: 700px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(8,145,178,0.12) 0%, transparent 70%); }
.p2-cta .container { position: relative; text-align: center; }
.p2-cta h2 { font-family: 'Lexend', sans-serif; color: white; font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 700; margin-bottom: 16px; }
.p2-cta p { color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto 36px; line-height: 1.75; }
.p2-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Section header util ── */
.p2-section-header { text-align: center; margin-bottom: 48px; }
.p2-section-header h2 { font-family: 'Lexend', sans-serif; font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 700; color: #0F172A; margin: 12px 0 16px; line-height: 1.25; }
.p2-section-header h2.light { color: white; }
.p2-section-header p { color: #64748B; max-width: 580px; margin: 0 auto; line-height: 1.75; }
.p2-section-header p.light { color: rgba(255,255,255,0.6); }

/* ── Local context (city pages) ── */
.p2-local { padding: 80px 0; background: white; }
.p2-local-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.p2-local h2 { font-family: 'Lexend', sans-serif; font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 700; color: #0F172A; margin-bottom: 16px; line-height: 1.3; }
.p2-local p { color: #334155; line-height: 1.8; margin-bottom: 14px; }
.p2-local-media { border-radius: 20px; overflow: hidden; box-shadow: 0 16px 48px rgba(15,23,42,0.16); }
.p2-local-media img { width: 100%; display: block; object-fit: cover; }

/* ── Related cities ── */
.p2-related { padding: 56px 0 72px; background: #F8FAFC; text-align: center; }
.p2-related h3 { font-family: 'Lexend', sans-serif; color: #0F172A; font-size: 1.15rem; margin-bottom: 20px; }
.p2-related-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* ── FAQ ── */
.p2-faq { padding: 80px 0; background: white; }
.p2-faq-list { max-width: 760px; margin: 40px auto 0; }
.p2-faq-item { border-bottom: 1px solid #E2E8F0; padding: 22px 0; }
.p2-faq-item h4 { color: #0F172A; font-size: 1rem; font-weight: 700; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 10px; }
.p2-faq-item h4 i { color: #0891B2; margin-top: 3px; }
.p2-faq-item p { color: #64748B; font-size: 0.92rem; line-height: 1.8; padding-left: 26px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .p2-intro-grid, .p2-journey-grid, .p2-local-grid { grid-template-columns: 1fr; gap: 40px; }
  .p2-facts-card { position: static; }
  .p2-modules-grid, .p2-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .p2-network-inner { grid-template-columns: 1fr 1fr; }
  .p2-photo-grid { grid-template-columns: 1fr 1fr; height: auto; }
  .p2-photo { height: 240px; }
}
@media (max-width: 768px) {
  .p2-stats-grid { grid-template-columns: repeat(2,1fr); }
  .p2-stat-item:nth-child(2) { border-right: none; }
  .p2-modules-grid, .p2-pricing-grid, .p2-network-inner { grid-template-columns: 1fr; }
  .p2-photo-grid { grid-template-columns: 1fr 1fr; }
  .p2-photo { height: 180px; }
}

/* ── Enquiry form ── */
.p2-enquiry { padding: 80px 0; background: #0F172A; position: relative; overflow: hidden; }
.p2-enquiry::before { content: ''; position: absolute; top: -80px; right: -80px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(8,145,178,0.12) 0%, transparent 70%); pointer-events: none; }
.p2-enquiry .container { position: relative; z-index: 1; }
.p2-enquiry-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: start; }
.p2-enquiry-intro h2 { font-family: 'Lexend', sans-serif; color: white; font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 700; margin-bottom: 16px; line-height: 1.25; }
.p2-enquiry-intro p { color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 24px; }
.p2-enquiry-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.p2-enquiry-list li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.8); font-size: 0.92rem; line-height: 1.5; }
.p2-enquiry-list li i { color: #67E8F9; margin-top: 3px; flex-shrink: 0; }
.p2-form { background: white; border-radius: 20px; padding: 34px 32px; box-shadow: 0 24px 60px rgba(0,0,0,0.28); }
.p2-field { margin-bottom: 16px; display: flex; flex-direction: column; }
.p2-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.p2-field label { font-size: 0.8rem; font-weight: 600; color: #334155; margin-bottom: 6px; }
.p2-field input, .p2-field select, .p2-field textarea { width: 100%; padding: 11px 13px; border: 1.5px solid #E2E8F0; border-radius: 9px; font-family: 'Inter', system-ui, sans-serif; font-size: 0.9rem; color: #0F172A; background: #fff; transition: border-color 0.15s, box-shadow 0.15s; }
.p2-field input:focus, .p2-field select:focus, .p2-field textarea:focus { outline: none; border-color: #0891B2; box-shadow: 0 0 0 3px rgba(8,145,178,0.12); }
.p2-field textarea { resize: vertical; min-height: 96px; }
.p2-form .btn { width: 100%; justify-content: center; display: flex; margin-top: 6px; }
.p2-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.p2-consent { font-size: 0.76rem; color: #94A3B8; line-height: 1.6; margin-top: 14px; }
.p2-consent a { color: #0891B2; font-weight: 600; }
.p2-form-note { margin-top: 16px; padding: 13px 16px; border-radius: 10px; font-size: 0.88rem; line-height: 1.5; }
.p2-form-note.ok { background: #ECFDF5; border: 1px solid #A7F3D0; color: #065F46; }
.p2-form-note.err { background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; }
@media (max-width: 1024px) { .p2-enquiry-grid { grid-template-columns: 1fr; gap: 36px; } }
@media (max-width: 560px) { .p2-field-row { grid-template-columns: 1fr; gap: 0; } }
