/* ============================================================
   ISO Registration India – Site Stylesheet
   Theme: Navy #0d1b2e | Gold #f5a623 | Blue #2563eb
============================================================ */

/* ── CSS Variables ── */
:root {
  --navy:      #0d1b2e;
  --navy-2:    #1a3558;
  --gold:      #f5a623;
  --gold-dark: #d97706;
  --gold-light:#fbbf47;
  --blue:      #2563eb;
  --success:   #16a34a;
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.07);
  --shadow-md: 0 6px 24px rgba(0,0,0,.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);
  --radius:    14px;
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }
body { font-family: var(--font-body); color: #1f2937; background: #fff; scroll-behavior: smooth; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; }
a { color: var(--gold-dark); }
img { max-width: 100%; }

/* ── Typography utilities ── */
.text-navy   { color: var(--navy) !important; }
.text-gold   { color: var(--gold) !important; }
.bg-navy     { background: var(--navy) !important; }
.bg-gold     { background: var(--gold) !important; }
.btn-navy    { background: var(--navy); color: #fff; border: none; }
.btn-navy:hover { background: var(--navy-2); color: #fff; }
.btn-gold    { background: var(--gold); color: var(--navy); border: none; font-weight: 700; }
.btn-gold:hover { background: var(--gold-light); color: var(--navy); }
.btn-outline-gold { border: 2px solid var(--gold); color: var(--gold-dark); background: transparent; font-weight: 600; }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-outline-navy { border: 2px solid var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: #fff; }
.rounded-xl { border-radius: var(--radius) !important; }
.shadow-card { box-shadow: var(--shadow-md); }
.fw-black    { font-weight: 900 !important; }

/* ── Breadcrumb ── */
.breadcrumb-wrap { background: #f8fafc; border-bottom: 1px solid #f1f5f9; padding: .6rem 0; }
.breadcrumb-wrap .breadcrumb-item + .breadcrumb-item::before { color: #94a3b8; }
.breadcrumb-item a { color: var(--navy); text-decoration: none; }
.breadcrumb-item a:hover { color: var(--gold-dark); }

/* ── Page Hero ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3558 60%, #1e4080 100%);
  color: #fff;
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.page-hero .badge-tag {
  background: rgba(245,166,35,.18);
  color: var(--gold);
  border: 1px solid rgba(245,166,35,.3);
  padding: .35rem .9rem;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
}
.page-hero .section-subtitle { opacity: .78; }

/* ── Hero Form Card ── */
.hero-form-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.hero-form-card .form-control,
.hero-form-card .form-select {
  border-radius: 10px;
  border-color: #e5e7eb;
  padding: .65rem .9rem;
  font-size: .9rem;
}
.hero-form-card .form-control:focus,
.hero-form-card .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,166,35,.15);
}

/* ── Sections ── */
.section { padding: 5rem 0; }
.section-alt { background: #f8fafc; }
.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold-dark);
  background: rgba(245,166,35,.1);
  padding: .3rem .8rem;
  border-radius: 100px;
}
.section-title { font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--navy); }
.section-subtitle { max-width: 580px; color: #64748b; }

/* ── Trust bar ── */
.trust-bar { background: #f1f5f9; border-bottom: 1px solid #e5e7eb; padding: .75rem 0; }
.trust-item { color: #475569; font-size: .78rem; font-weight: 600; }

/* ── Certificate / Service cards ── */
.cert-card {
  background: #fff;
  border: 1.5px solid #f1f5f9;
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cert-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.cert-card.popular::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.cert-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: .9rem;
  flex-shrink: 0;
}
.cert-price { font-size: 1.5rem; font-weight: 800; color: var(--navy); }
.cert-meta  { font-size: .72rem; color: #64748b; }

/* ── Pricing cards ── */
.license-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  position: relative;
  transition: all .25s;
  display: flex;
  flex-direction: column;
}
.license-card.popular {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(245,166,35,.2);
}
.license-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  font-size: .72rem; font-weight: 800; padding: .25rem .9rem;
  border-radius: 100px; white-space: nowrap;
}
.license-card .price { font-size: 2rem; font-weight: 900; color: var(--navy); }
.license-card .price-label { font-size: .75rem; color: #64748b; }
.license-card ul { list-style: none; padding: 0; text-align: left; margin: 1rem 0; }
.license-card ul li {
  padding: .3rem 0;
  font-size: .85rem;
  color: #374151;
  padding-left: 1.4rem;
  position: relative;
}
.license-card ul li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--success); font-weight: 700;
}

/* ── Blog cards ── */
.blog-card { background: #fff; border: 1.5px solid #f1f5f9; border-radius: var(--radius); overflow: hidden; transition: all .25s; }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-img-wrap { height: 180px; overflow: hidden; background: #f8fafc; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .card-img-wrap img { transform: scale(1.04); }
.card-body { padding: 1.25rem; }
.card-body h6 { font-size: .9rem; line-height: 1.45; }
.card-body h6 a { color: var(--navy); text-decoration: none; }
.card-body h6 a:hover { color: var(--gold-dark); }
.card-meta { font-size: .75rem; color: #9ca3af; }
.cat-badge {
  display: inline-block;
  background: rgba(245,166,35,.12); color: var(--gold-dark);
  font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  padding: .2rem .6rem; border-radius: 6px; margin-bottom: .5rem;
}

/* ── FAQ ── */
.faq-accordion .accordion-item { border: 1.5px solid #f1f5f9; border-radius: 12px !important; margin-bottom: .65rem; overflow: hidden; }
.faq-accordion .accordion-button { font-weight: 600; font-size: .92rem; color: var(--navy); background: #fff; box-shadow: none; }
.faq-accordion .accordion-button:not(.collapsed) { color: var(--gold-dark); background: #fef9ee; box-shadow: none; }
.faq-accordion .accordion-button::after { filter: none; }
.faq-accordion .accordion-button:focus { box-shadow: none; }

/* ── Stat boxes ── */
.stat-box {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  padding: .8rem .5rem;
  text-align: center;
}
.stat-num { font-size: clamp(1.3rem,3vw,1.75rem); font-weight: 900; color: #f5a623; line-height: 1.1; }
.stat-label { font-size: .68rem; color: rgba(255,255,255,.62); margin-top: .2rem; font-weight: 500; text-transform: uppercase; letter-spacing: .03em; }

/* ── Badge pill ── */
.badge-pill {
  background: rgba(245,166,35,.15); color: var(--gold);
  border: 1px solid rgba(245,166,35,.3);
  font-size: .75rem; font-weight: 700;
  padding: .3rem .9rem; border-radius: 100px; letter-spacing: .02em;
}

/* ── Form steps ── */
.progress-steps { display: flex; align-items: center; gap: 0; margin-bottom: .75rem; }
.step-dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: #e5e7eb; color: #9ca3af;
  font-size: .72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; transition: all .2s;
}
.step-dot.active { background: var(--gold); color: var(--navy); }
.step-dot.done   { background: #16a34a; color: #fff; }
.step-connector  { flex: 1; height: 2px; background: #e5e7eb; }
.form-step { display: none; }
.form-step.active { display: block; }

/* ── Upload zone ── */
.upload-zone {
  border: 2px dashed #d1d5db; border-radius: 12px;
  padding: 1.5rem; text-align: center; cursor: pointer;
  transition: border-color .2s, background .2s;
  position: relative;
}
.upload-zone:hover { border-color: var(--gold); background: #fef9ee; }
.upload-zone input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; }
.upload-icon { font-size: 2rem; display: block; margin-bottom: .5rem; }
.upload-label { display: block; font-weight: 600; color: var(--navy); margin-bottom: .25rem; font-size: .9rem; }
.upload-sublabel { display: block; font-size: .75rem; color: #9ca3af; }

/* ── License radio ── */
.license-radio {
  cursor: pointer;
  transition: border-color .2s, background .2s;
  border-color: #e5e7eb !important;
}
.license-radio:has(input:checked) {
  border-color: var(--gold) !important;
  background: #fef9ee;
}

/* ── Notice boxes ── */
.notice-urgent { background: #fffbf0; border: 1.5px solid var(--gold); border-radius: 10px; padding: .75rem 1rem; }

/* ── Team cards ── */
.team-card { background: #fff; border: 1.5px solid #f1f5f9; border-radius: 16px; padding: 1.5rem; text-align: center; transition: all .22s; }
.team-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); transform: translateY(-3px); }
.team-avatar { width: 68px; height: 68px; border-radius: 50%; background: linear-gradient(135deg,#f5a623,#fbbf47); color: #0d1b2e; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 800; margin: 0 auto; }
.team-role { font-size: .72rem; font-weight: 700; color: var(--gold-dark); text-transform: uppercase; letter-spacing: .03em; margin-bottom: .5rem; }

/* ── Contact cards ── */
.contact-method-card { background: #fff; border: 1.5px solid #f1f5f9; border-radius: 16px; padding: 1.5rem; text-align: center; transition: all .22s; }
.contact-method-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.contact-method-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin: 0 auto 1rem; }

/* ── Cert selector (homepage) ── */
.cert-group-tab { border: 2px solid #e5e7eb; border-radius: 12px; padding: .65rem 1.25rem; cursor: pointer; font-weight: 600; font-size: .88rem; transition: all .2s; background: #fff; color: #374151; }
.cert-group-tab.active { border-color: var(--blue); background: #eff6ff; color: var(--blue); }
.cert-option {
  display: flex; align-items: center; gap: .75rem;
  padding: .65rem .85rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  cursor: pointer;
  transition: all .18s;
  margin-bottom: .4rem;
  background: #fff;
}
.cert-option:hover { border-color: var(--gold); background: #fef9ee; }
.cert-option.selected { border-color: var(--gold); background: #fef9ee; }
.cert-option input[type="radio"] { display: none; }
.cert-option-name { font-size: .85rem; font-weight: 600; color: var(--navy); }
.cert-option-sub  { font-size: .72rem; color: #64748b; }
.cert-option-price { margin-left: auto; font-weight: 800; color: var(--gold-dark); font-size: .9rem; white-space: nowrap; }
.price-display-box { background: linear-gradient(135deg,#0d1b2e,#1a3558); border-radius: 14px; padding: 1.25rem; color: #fff; text-align: center; margin-top: .75rem; }
.price-display-amount { font-size: 2rem; font-weight: 900; color: var(--gold); }

/* ── Animations ── */
.fade-in-up { opacity: 0; transform: translateY(18px); animation: fadeInUp .6s ease forwards; }
.delay-100  { animation-delay: .1s }
.delay-200  { animation-delay: .2s }
.delay-300  { animation-delay: .35s }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0) } }
.fade-on-scroll { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }

/* ── Sticky mobile CTA ── */
.sticky-cta-bar { position: fixed; bottom: 0; left: 0; right: 0; display: flex; z-index: 1020; border-top: 1px solid rgba(255,255,255,.08); }
.scta-btn { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .18rem; padding: .65rem .35rem .8rem; font-size: .67rem; font-weight: 700; text-decoration: none; transition: opacity .2s; text-transform: uppercase; letter-spacing: .03em; }
.scta-btn i { font-size: 1.1rem; }
.scta-call { background: #1a3258; color: rgba(255,255,255,.8); }
.scta-wa   { background: #15532e; color: rgba(255,255,255,.8); }
.scta-apply { flex: 1.5; background: linear-gradient(135deg,#f5a623,#fbbf47); color: #0d1b2e; }

/* ── Responsive ── */
@media (max-width: 991px) {
  body { padding-bottom: 66px; }
  .section { padding: 3.5rem 0; }
  .page-hero { padding: 2.5rem 0 2rem; }
}
@media (max-width: 575px) {
  .page-hero h1 { font-size: 1.6rem; }
  .section-title { font-size: 1.4rem; }
}
