/* Indian Passport Services landing page */

.passport-page {
  background: #f4f7fb;
  color: #1e293b;
}

/* ── Hero ── */
.passport-page .passport-hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: auto;
  background:
    radial-gradient(circle at 18% 18%, rgba(201, 162, 39, 0.16), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(18, 140, 75, 0.12), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 52%, #eef5fb 100%);
  border-bottom: 1px solid #e2e8f0;
}

.passport-page .hero-inner {
  position: relative;
  z-index: 1;
  padding: 4rem 0 2.75rem;
}

.passport-page .hero-content h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: clamp(2.15rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.passport-page .hero-content .line-navy {
  color: #1a2b56;
}

.passport-page .hero-content .line-gold {
  color: #c9a227;
}

.passport-page .hero-lead {
  font-size: 1.08rem;
  color: #475569;
  line-height: 1.65;
  max-width: 650px;
  margin: 0 auto 2rem;
}

.passport-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 620px;
  margin: 0 auto;
}

.passport-page .hero-btn {
  flex: 1 1 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 66px;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 24px rgba(26, 43, 86, 0.18);
}

.passport-page .hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(26, 43, 86, 0.22);
  color: #fff;
}

.passport-page .hero-btn-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.passport-page .hero-btn-text {
  flex: 1;
  line-height: 1.3;
}

.passport-page .hero-btn-arrow {
  font-size: 1.1rem;
  opacity: 0.85;
  flex-shrink: 0;
}

.passport-page .hero-btn-navy {
  background: #1a2b56;
  color: #fff;
}

.passport-page .hero-btn-navy:hover {
  background: #243a72;
  color: #fff;
}

.passport-page .hero-btn-green {
  background: #128c4b;
  color: #fff;
  box-shadow: 0 8px 24px rgba(18, 140, 75, 0.25);
}

.passport-page .hero-btn-green:hover {
  background: #0f7a41;
  color: #fff;
}

/* Trust bar */
.passport-page .trust-bar {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid #e2e8f0;
  padding: 20px 0;
  backdrop-filter: blur(8px);
}

.passport-page .trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a2b56;
}

.passport-page .trust-item i {
  font-size: 1.35rem;
  color: #c9a227;
}

.passport-page .section-title {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  color: #1a2b56;
  text-align: center;
  margin-bottom: 0.5rem;
}

.passport-page .section-title-dashed {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 1.5rem;
}

.passport-page .section-title-dashed::before,
.passport-page .section-title-dashed::after {
  content: '';
  width: 38px;
  height: 3px;
  border-radius: 3px;
  background: #c9a227;
}

.passport-page .section-subtitle {
  text-align: center;
  color: #64748b;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.passport-page .services-section {
  padding: 3.5rem 0 2rem;
}

.passport-page .consular-update-section {
  padding: 1.5rem 0 0.5rem;
}

.passport-page .passport-seo-intro {
  padding: 1.25rem 0 0.5rem;
}

.passport-page .passport-seo-card {
  background: #fff;
  border: 1px solid #e5edf8;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(15, 43, 91, 0.06);
  padding: 1.2rem 1.25rem;
}

.passport-page .passport-seo-card h2 {
  font-size: 1.2rem;
  color: #1a2b56;
  font-weight: 800;
  margin: 0 0 0.55rem;
}

.passport-page .passport-seo-card p {
  margin: 0 0 0.45rem;
  color: #4b5c76;
  line-height: 1.6;
  font-size: 0.92rem;
}

.passport-page .passport-seo-card p:last-child {
  margin-bottom: 0;
}

.passport-page .services-card {
  background: #f7f9fc;
  border: 1px solid #e6ecf4;
  border-radius: 18px;
  padding: 2rem 1.75rem;
  height: 100%;
}

.passport-page .service-icon-card {
  text-align: center;
  padding: 0.25rem;
}

.passport-page .service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #e8eef7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.passport-page .service-icon-card:hover .service-icon-wrap {
  transform: translateY(-4px);
  background: #1a2b56;
}

.passport-page .service-icon-card:hover .service-icon-wrap i {
  color: #fff;
}

.passport-page .service-icon-wrap i {
  font-size: 1.6rem;
  color: #1a2b56;
  transition: color 0.25s ease;
}

.passport-page .service-icon-card p {
  font-size: 0.78rem;
  font-weight: 700;
  color: #1a2b56;
  margin: 0;
  line-height: 1.3;
}

.passport-page .services-note {
  font-size: 1.02rem;
  color: #64748b;
  line-height: 1.75;
  margin: 0.75rem auto 0;
  text-align: center;
  max-width: none;
  white-space: nowrap;
  padding-top: 1.25rem;
  border-top: 1px solid #e6ecf4;
}

.passport-page .provider-box {
  background: linear-gradient(135deg, #14213f 0%, #1d3163 100%);
  color: #fff;
  border-radius: 18px;
  padding: 2rem 1.85rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.passport-page .provider-box .badge-new {
  background: #f97316;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.passport-page .provider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.85rem 0 1rem;
}

.passport-page .provider-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}

.passport-page .provider-box p {
  font-size: 0.92rem;
  line-height: 1.6;
  opacity: 0.94;
  margin-bottom: 1rem;
}

.passport-page .provider-box p strong {
  color: #ffd87a;
}

.passport-page .provider-logo {
  background: #fff;
  border-radius: 10px;
  padding: 10px 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.passport-page .provider-logo img {
  height: 34px;
  width: auto;
  display: block;
}

.passport-page .provider-info {
  background: #fbf6e9;
  color: #5c4a1f;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.5;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 0.5rem;
}

.passport-page .provider-info i {
  color: #c9a227;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* General information section */
.passport-page .general-info-section {
  padding: 2.5rem 0 3rem;
  background: #fff;
}

.passport-page .general-info-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.passport-page .general-info-header h2 {
  margin-bottom: 0.55rem;
  letter-spacing: 0.4px;
}

.passport-page .general-info-header p {
  max-width: 680px;
  margin: 0 auto;
  color: #64748b;
  font-size: 1rem;
}

.passport-page .info-card {
  position: relative;
  background: #fff;
  border: 1px solid #e6ecf4;
  border-radius: 16px;
  padding: 1.35rem 1.2rem 1.2rem;
  box-shadow: 0 6px 18px rgba(15, 43, 91, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.passport-page .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 26px rgba(15, 43, 91, 0.12);
  border-color: #d0ddef;
}

.passport-page .info-card-number {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #f2f6fb;
  border: 1px solid #dde7f3;
  color: #1a2b56;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  min-width: 38px;
  text-align: center;
  padding: 4px 9px;
}

.passport-page .info-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #edf3fa;
  color: #1a2b56;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 0.95rem;
}

.passport-page .info-card h3 {
  font-size: 1.04rem;
  line-height: 1.35;
  font-weight: 700;
  color: #1a2b56;
  margin-bottom: 0.55rem;
  padding-right: 46px;
}

.passport-page .info-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #5f6d82;
  margin: 0;
}

.passport-page .info-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.38rem;
}

.passport-page .info-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #4f5f76;
  font-size: 0.86rem;
  line-height: 1.4;
}

.passport-page .info-checklist i {
  color: #16a34a;
  margin-top: 2px;
  font-size: 0.86rem;
  flex-shrink: 0;
}

.passport-page .info-note-strip {
  margin-top: 1.8rem;
  position: relative;
  background: linear-gradient(135deg, #f8fbff 0%, #f1f6fd 100%);
  border: 1px solid #dce7f5;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(15, 43, 91, 0.08);
  padding: 1.25rem 1.3rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  overflow: hidden;
}

.passport-page .info-note-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e8f1ff;
  color: #2563eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.12rem;
  flex-shrink: 0;
}

.passport-page .info-note-content h3 {
  font-size: 1.02rem;
  margin: 0 0 0.35rem;
  color: #1a2b56;
  font-weight: 700;
}

.passport-page .info-note-content p {
  margin: 0;
  color: #5f6d82;
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 900px;
}

.passport-page .info-note-list {
  margin: 0.55rem 0 0;
  padding-left: 1rem;
  color: #5f6d82;
  font-size: 0.9rem;
  line-height: 1.55;
}

.passport-page .info-note-list li + li {
  margin-top: 0.3rem;
}

.passport-page .info-note-art {
  position: absolute;
  right: 16px;
  bottom: -2px;
  font-size: 4.2rem;
  color: rgba(26, 43, 86, 0.09);
}

.passport-page .why-section {
  padding: 3rem 0;
  background: #fff;
}

.passport-page .why-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.5rem;
  height: 100%;
  text-align: center;
  box-shadow: 0 4px 20px rgba(15, 43, 91, 0.06);
  transition: transform 0.25s ease;
}

.passport-page .why-card:hover {
  transform: translateY(-4px);
}

.passport-page .why-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: #fff;
}

.passport-page .why-icon.blue { background: #3b82f6; }
.passport-page .why-icon.green { background: #22c55e; }
.passport-page .why-icon.orange { background: #f97316; }
.passport-page .why-icon.purple { background: #8b5cf6; }

.passport-page .why-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f2b5b;
  margin-bottom: 0.5rem;
}

.passport-page .why-card p {
  font-size: 0.88rem;
  color: #64748b;
  margin: 0;
}

.passport-page .cta-cards-section {
  padding: 2rem 0 3.5rem;
}

.passport-page .cta-card {
  border-radius: 16px;
  padding: 2rem;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.passport-page .cta-card.blue {
  background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
}

.passport-page .cta-card.green {
  background: linear-gradient(135deg, #15803d 0%, #16a34a 100%);
}

.passport-page .cta-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.passport-page .cta-card p {
  font-size: 0.92rem;
  opacity: 0.95;
}

.passport-page .cta-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.passport-page .cta-card ul li {
  padding: 4px 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.passport-page .cta-card ul li::before {
  content: '\2713';
  font-weight: 700;
}

.passport-page .cta-card .btn-cta-white {
  background: #fff;
  color: #0f2b5b;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  width: fit-content;
  transition: all 0.25s ease;
}

.passport-page .cta-card .btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  color: #0f2b5b;
}

.passport-page .cta-illustration {
  text-align: center;
  padding: 1rem;
}

.passport-page .cta-illustration .clipboard-icon {
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.85);
}

.passport-page .steps-section {
  padding: 3rem 0;
  background: #fff;
}

.passport-page .step-item {
  text-align: center;
  padding: 1rem;
}

.passport-page .step-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #e8f4fc;
  border: 2px solid #bfdbfe;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.75rem;
  color: #1d4ed8;
}

.passport-page .step-item h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f2b5b;
}

.passport-page .step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 1.5rem;
}

.passport-page .faq-section {
  padding: 3rem 0;
}

.passport-page .faq-section .accordion-button {
  font-weight: 600;
  color: #0f2b5b;
  font-size: 0.95rem;
}

.passport-page .faq-section .accordion-button:not(.collapsed) {
  background: #e8f4fc;
  color: #1d4ed8;
}

.passport-page .ready-section {
  background: linear-gradient(135deg, #0f2b5b 0%, #1e3a8a 100%);
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
}

.passport-page .ready-section h2 {
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.passport-page .ready-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 1.5rem;
}

.passport-page .btn-ready-wa {
  background: #16a34a;
  color: #fff;
  border-radius: 8px;
  padding: 14px 28px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.passport-page .btn-ready-wa:hover { background: #15803d; color: #fff; }

.passport-page .btn-ready-call {
  background: #2563eb;
  color: #fff;
  border-radius: 8px;
  padding: 14px 28px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.passport-page .btn-ready-call:hover { background: #1d4ed8; color: #fff; }

.passport-page .btn-ready-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 14px 28px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.passport-page .btn-ready-outline:hover {
  background: #fff;
  color: #0f2b5b;
}

.passport-page .footer-trust-bar {
  background: #0a1628;
  color: #cbd5e1;
  padding: 1.5rem 0;
}

.passport-page .footer-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
}

.passport-page .footer-trust-item i {
  font-size: 1.25rem;
  color: #60a5fa;
}

@media (max-width: 991px) {
  .passport-page .hero-inner {
    padding: 2.5rem 0 1.5rem;
  }

  .passport-page .hero-actions {
    flex-direction: column;
  }

  .passport-page .step-arrow {
    transform: rotate(90deg);
    padding: 0.5rem 0;
  }

  .passport-page .general-info-section {
    padding: 2rem 0 2.5rem;
  }

  .passport-page .info-card {
    padding: 1.25rem 1.05rem 1.05rem;
  }

  .passport-page .info-card h3 {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .passport-page .trust-item {
    justify-content: center;
    margin-bottom: 8px;
  }

  .passport-page .footer-trust-item {
    justify-content: center;
    margin-bottom: 10px;
  }

  .passport-page .provider-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .passport-page .service-icon-card p {
    font-size: 0.72rem;
  }

  .passport-page .services-note {
    white-space: normal;
  }

  .passport-page .general-info-header p {
    font-size: 0.92rem;
  }

  .passport-page .info-note-strip {
    padding: 1rem;
  }

  .passport-page .info-note-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .passport-page .info-note-art {
    display: none;
  }
}

/*--------------------------------------------------------------
# Family Visa Fees Calculator Promo
--------------------------------------------------------------*/
.passport-page .family-visa-promo {
  padding: 3rem 0;
}

.passport-page .fv-promo-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 2.75rem 2.5rem;
  min-height: 340px;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #9333ea 100%);
  box-shadow: 0 20px 45px rgba(79, 70, 229, 0.35);
  display: flex;
  align-items: center;
}

.passport-page .fv-promo-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.passport-page .fv-promo-card::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.passport-page .fv-promo-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 560px;
}

.passport-page .fv-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.passport-page .fv-promo-badge i {
  color: #fde047;
}

.passport-page .fv-promo-content h2 {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.passport-page .fv-promo-content p {
  font-size: 1rem;
  opacity: 0.95;
  margin-bottom: 1.5rem;
}

.passport-page .fv-promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.passport-page .fv-promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #5b21b6;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.passport-page .fv-promo-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
  color: #5b21b6;
}

.passport-page .fv-promo-btn-outline {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: none;
}

.passport-page .fv-promo-btn-outline:hover {
  background: #fff;
  color: #5b21b6;
}

.passport-page .fv-promo-btn i:last-child {
  transition: transform 0.25s ease;
}

.passport-page .fv-promo-btn:hover i:last-child {
  transform: translateX(4px);
}

.passport-page .fv-promo-visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60%;
  z-index: 1;
  pointer-events: none;
}

.passport-page .fv-promo-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  border: none;
  border-radius: 0;
  box-shadow: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.4) 22%, #000 50%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.4) 22%, #000 50%);
}

@media (max-width: 767px) {
  .passport-page .fv-promo-card {
    flex-direction: column;
    text-align: center;
    padding: 0 0 2rem;
    min-height: 0;
  }

  .passport-page .fv-promo-content {
    padding: 0 1.5rem;
  }

  .passport-page .fv-promo-content h2 {
    font-size: 1.5rem;
  }

  .passport-page .fv-promo-visual {
    position: relative;
    order: -1;
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
  }

  .passport-page .fv-promo-visual img {
    object-position: center;
    -webkit-mask-image: linear-gradient(to bottom, #000 55%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 55%, transparent 100%);
  }

  .passport-page .fv-promo-btn {
    width: 100%;
    justify-content: center;
  }
}
