/* ===== IFEM Church Website - Custom Styles ===== */
:root {
  --navy: #0d1b3e;
  --navy-light: #16264f;
  --gold: #c9a227;
  --gold-light: #e0bf4a;
  --cream: #f7f5ef;
  --text-dark: #2b2b33;
  --text-muted: #5d6470;
}

* { scroll-behavior: smooth; }

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: "Cormorant Garamond", serif; font-weight: 700; }

a { text-decoration: none; }

.text-gold { color: var(--gold) !important; }

/* ===== Navbar ===== */
#mainNav {
  background-color: transparent;
  transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
  padding: 1rem 0;
}
#mainNav.scrolled {
  background-color: var(--navy);
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.brand-logo {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.brand-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
}
#mainNav .nav-link {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 0.9rem;
  position: relative;
}
#mainNav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0.3rem;
  left: 0.9rem;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after { width: calc(100% - 1.8rem); }
#mainNav .nav-link:hover { color: #fff; }

.btn-join {
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  border-radius: 30px;
  padding: 0.5rem 1.4rem;
  transition: all 0.3s ease;
}
.btn-join:hover { background: var(--gold-light); transform: translateY(-2px); color: var(--navy); }

/* ===== Buttons ===== */
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  border: none;
  border-radius: 30px;
  padding: 0.65rem 1.8rem;
  transition: all 0.3s ease;
}
.btn-gold:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(201, 162, 39, 0.4); }

.btn-primary-church {
  background: var(--navy);
  color: #fff;
  font-weight: 500;
  border-radius: 30px;
  padding: 0.6rem 1.6rem;
  transition: all 0.3s ease;
}
.btn-primary-church:hover { background: var(--navy-light); color: #fff; transform: translateY(-3px); }

.btn-outline-light { border-radius: 30px; padding: 0.6rem 1.6rem; font-weight: 500; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0d1b3e 0%, #1c3163 60%, #24407d 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% center, rgba(201, 162, 39, 0.12), transparent 60%);
}
.hero-logo {
  height: 90px;
  width: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 0 40px rgba(201, 162, 39, 0.4);
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Sliding text */
.hero-text-col { position: relative; z-index: 2; }
.hero-slides { position: relative; min-height: 270px; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.hero-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  font-family: "Poppins", sans-serif;
  margin-bottom: 0.8rem;
}
.hero-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 1rem;
}
.hero-lead {
  font-size: 1.18rem;
  font-weight: 300;
  opacity: 0.95;
  max-width: 560px;
}
.hero-dots { display: flex; gap: 0.5rem; margin-top: 1.6rem; }
.hero-dots button {
  width: 30px;
  height: 5px;
  border: none;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease;
}
.hero-dots button.active { background: var(--gold); }

/* Sliding images */
.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 540px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(160deg, #16264f 0%, #0d1b3e 100%);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  z-index: 2;
}
.hero-img-slide {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 6s ease;
}
.hero-img-slide.active { opacity: 1; transform: scale(1); }
.hero-img-frame {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 162, 39, 0.5);
  border-radius: 20px;
  box-shadow: inset 0 0 60px rgba(13, 27, 62, 0.35);
  pointer-events: none;
}
.scroll-down {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.8rem;
  animation: bounce 2s infinite;
  z-index: 3;
}
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }

/* ===== Sections ===== */
.section { padding: 6rem 0; }
.section-light { background: var(--cream); }
.section-dark { background: var(--navy); }
.section-head { margin-bottom: 3.5rem; }
.section-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  font-family: "Poppins", sans-serif;
  margin-bottom: 0.5rem;
}
.section-title { font-size: 2.6rem; color: var(--navy); margin-bottom: 1rem; }
.section-dark .section-title, .text-white .section-title { color: #fff; }
.title-underline {
  width: 70px;
  height: 3px;
  background: var(--gold);
  margin: 0.5rem auto 0;
  border-radius: 3px;
}
.title-underline.ms-0 { margin-left: 0; }
.section-subtitle { max-width: 680px; margin-top: 1rem; color: var(--text-muted); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.75); }

/* ===== Info cards (About) ===== */
.info-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.8rem 1.5rem;
  box-shadow: 0 10px 30px rgba(13, 27, 62, 0.08);
  border-bottom: 3px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(13, 27, 62, 0.15); }
.info-card i { font-size: 2rem; color: var(--gold); margin-bottom: 0.7rem; display: block; }
.info-card h5 { color: var(--navy); margin-bottom: 0.6rem; }
.info-card p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 0; }

/* ===== Founder ===== */
.founder-img-wrap {
  position: relative;
  display: inline-block;
  padding: 12px;
}
.founder-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid var(--gold);
  border-radius: 16px;
  transform: rotate(-3deg);
}
.founder-img {
  border-radius: 16px;
  position: relative;
  box-shadow: 0 20px 45px rgba(13, 27, 62, 0.2);
  max-height: 480px;
  width: 100%;
  object-fit: cover;
}
.founder-quote { font-size: 1.35rem; color: var(--navy); border-left: 4px solid var(--gold); padding-left: 1rem; }

/* ===== Purpose / lists ===== */
.purpose-heading { color: var(--navy); font-size: 1.7rem; margin-bottom: 1.2rem; }
.section-dark .purpose-heading, .text-white .purpose-heading { color: #fff; }
.check-list { list-style: none; padding-left: 0; }
.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
}
.check-list li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 1.1rem;
}

/* ===== Value cards ===== */
.value-card {
  background: var(--navy-light);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(201, 162, 39, 0.2);
  transition: all 0.3s ease;
}
.value-card:hover { background: #1c2d5c; transform: translateY(-6px); border-color: var(--gold); }
.value-card i { font-size: 2.4rem; color: var(--gold); margin-bottom: 1rem; }
.value-card h5 { color: #fff; margin-bottom: 0.7rem; }
.value-card p { color: rgba(255,255,255,0.7); font-size: 0.92rem; margin-bottom: 0; }

/* ===== Faith cards ===== */
.faith-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border-radius: 12px;
  padding: 1.4rem;
  height: 100%;
  box-shadow: 0 8px 24px rgba(13, 27, 62, 0.07);
  transition: transform 0.3s ease;
}
.faith-card:hover { transform: translateY(-5px); }
.faith-num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.2rem;
}
.faith-card h6 { color: var(--navy); margin-bottom: 0.3rem; font-size: 1.05rem; font-weight: 700; }
.faith-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0; }

/* ===== School CTA ===== */
.school-cta {
  position: relative;
  background: linear-gradient(rgba(13, 27, 62, 0.92), rgba(13, 27, 62, 0.92)),
    linear-gradient(135deg, #1c3163, #24407d);
  background-size: cover;
  background-position: center;
}
.school-cta-overlay { position: absolute; inset: 0; }
.cta-text { max-width: 720px; color: rgba(255,255,255,0.85); }

/* ===== Benefit cards ===== */
.benefit-card {
  background: #fff;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(13, 27, 62, 0.08);
  border-top: 3px solid var(--gold);
  transition: all 0.3s ease;
}
.benefit-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(13, 27, 62, 0.15); }
.benefit-card i { font-size: 2.4rem; color: var(--gold); margin-bottom: 1rem; }
.benefit-card h5 { color: var(--navy); margin-bottom: 0.6rem; }
.benefit-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0; }

/* ===== Contact ===== */
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.6rem; }
.contact-item i { font-size: 1.4rem; color: var(--gold); margin-top: 0.2rem; }
.contact-item h6 { color: #fff; margin-bottom: 0.2rem; font-family: "Poppins", sans-serif; font-weight: 600; font-size: 0.95rem; }
.contact-item a, .contact-item span { color: rgba(255,255,255,0.75); }
.contact-item a:hover { color: var(--gold); }
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  margin-right: 0.6rem;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.social-icons a:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }

.contact-form .form-control {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 10px;
  padding: 0.8rem 1rem;
}
.contact-form .form-control::placeholder { color: rgba(255,255,255,0.55); }
.contact-form .form-control:focus {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(201, 162, 39, 0.2);
  color: #fff;
}
.form-feedback-msg { font-size: 0.95rem; }
.form-feedback-msg.success { color: var(--gold-light); }

/* ===== Footer ===== */
.footer { background: #081229; color: rgba(255,255,255,0.7); padding: 4rem 0 1.5rem; }
.footer h6 { color: #fff; margin-bottom: 1.2rem; font-family: "Poppins", sans-serif; font-weight: 600; letter-spacing: 1px; font-size: 0.95rem; }
.footer p { font-size: 0.92rem; }
.footer a { color: rgba(255,255,255,0.7); }
.footer a:hover { color: var(--gold); }
.footer-links { list-style: none; padding-left: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-divider { border-color: rgba(255,255,255,0.1); margin: 2.5rem 0 1.5rem; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* ===== Back to top ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-light); color: var(--navy); }

/* ===== Page hero (sub pages) ===== */
.page-hero {
  background: linear-gradient(135deg, #0d1b3e 0%, #1c3163 100%);
  padding: 9rem 0 4rem;
  text-align: center;
  color: #fff;
}
.page-hero h1 { font-size: 3rem; }
.page-hero .breadcrumb { justify-content: center; }
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ===== Program cards (School page) ===== */
.program-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(13, 27, 62, 0.1);
}
.program-side {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.program-badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--gold);
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.program-side h3 { color: #fff; font-size: 1.7rem; margin-bottom: 1rem; }
.program-meta { list-style: none; padding-left: 0; margin-bottom: 0; }
.program-meta li { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-bottom: 0.5rem; }
.program-meta li i { color: var(--gold); margin-right: 0.5rem; }
.program-body { padding: 2.2rem; }
.prog-heading { color: var(--navy); font-family: "Poppins", sans-serif; font-weight: 600; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.8rem; }
.check-list.small li { font-size: 0.88rem; margin-bottom: 0.5rem; padding-left: 1.6rem; }
.check-list.small li::before { font-size: 0.95rem; }
.fee-table { font-size: 0.9rem; margin-bottom: 1rem; }
.fee-table td { padding: 0.45rem 0.4rem; border-color: #eee; }
.fee-table td:last-child { text-align: right; font-weight: 600; color: var(--navy); }
.award { font-size: 0.82rem; color: var(--text-muted); background: var(--cream); border-radius: 8px; padding: 0.7rem 0.9rem; }
.award i { color: var(--gold); margin-right: 0.4rem; }
.alert-accred { background: #fff8e6; border: 1px solid var(--gold); color: #6b5a13; border-radius: 12px; font-size: 0.92rem; }

/* ===== Membership form ===== */
.reg-fee-banner {
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  padding: 1rem 1.4rem;
  text-align: center;
  font-size: 0.98rem;
}
.reg-fee-banner i { color: var(--gold); }
.member-form .form-section {
  background: #fff;
  border-radius: 14px;
  padding: 2rem;
  margin-bottom: 1.8rem;
  box-shadow: 0 10px 30px rgba(13, 27, 62, 0.07);
}
.form-section-title {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.sec-num {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
}
.member-form .form-label { font-family: "Poppins", sans-serif; font-size: 0.85rem; font-weight: 500; color: var(--navy); margin-bottom: 0.3rem; }
.member-form .form-control, .member-form .form-select { border-radius: 9px; padding: 0.6rem 0.85rem; border: 1px solid #dde1e8; }
.member-form .form-control:focus, .member-form .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 0.2rem rgba(201, 162, 39, 0.18); }
.status-group .form-check { margin-bottom: 0.6rem; }
.status-group .form-check-label { font-size: 0.92rem; color: var(--text-muted); }
.declaration-text { font-size: 0.92rem; color: var(--text-muted); background: var(--cream); border-left: 4px solid var(--gold); border-radius: 8px; padding: 1rem 1.2rem; }
.member-form .form-check-input:checked { background-color: var(--gold); border-color: var(--gold); }
.form-section-hint { font-size: 0.9rem; color: var(--text-muted); margin-top: -0.6rem; margin-bottom: 1.4rem; }

/* ===== Multi-step wizard ===== */
.form-stepper {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 0 0.5rem;
}
.stepper-progress {
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 4px;
  background: #dfe3ea;
  border-radius: 4px;
  z-index: 0;
}
.stepper-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
  border-radius: 4px;
  transition: width 0.4s ease;
}
.step-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
  cursor: default;
}
.step-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #dfe3ea;
  color: #9aa3b2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.step-label {
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: #9aa3b2;
  text-align: center;
  transition: color 0.3s ease;
}
.step-item.active .step-circle {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold);
  box-shadow: 0 0 0 5px rgba(13, 27, 62, 0.1);
}
.step-item.active .step-label { color: var(--navy); font-weight: 600; }
.step-item.completed .step-circle { background: var(--gold); border-color: var(--gold); color: var(--navy); cursor: pointer; }
.step-item.completed .step-label { color: var(--navy); }
.step-item.completed { cursor: pointer; }

.form-step { display: none; animation: stepFade 0.45s ease; }
.form-step.active { display: block; }
@keyframes stepFade { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.btn-outline-navy {
  border: 1px solid var(--navy);
  color: var(--navy);
  font-weight: 500;
  border-radius: 30px;
  padding: 0.55rem 1.5rem;
  background: transparent;
  transition: all 0.3s ease;
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }
.next-step, .form-nav .btn-gold { border-radius: 30px; padding: 0.55rem 1.6rem; }

/* Review summary */
.review-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.6rem 1.5rem;
}
.review-item {
  border-bottom: 1px dashed #e3e6ec;
  padding-bottom: 0.5rem;
}
.review-item .r-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9aa3b2;
  font-weight: 600;
}
.review-item .r-value { font-size: 0.95rem; color: var(--navy); word-break: break-word; }
.review-empty { color: var(--text-muted); font-style: italic; }

/* ===== Photo upload ===== */
.photo-upload { text-align: center; }
.photo-preview {
  width: 100%;
  max-width: 170px;
  aspect-ratio: 3 / 4;
  margin: 0 auto;
  border: 2px dashed #cfd4de;
  border-radius: 10px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.photo-preview img { width: 100%; height: 100%; object-fit: cover; display: none; }
.photo-placeholder { color: #aeb4c0; font-size: 0.85rem; text-align: center; }
.photo-placeholder i { font-size: 2rem; }

/* ===== Printable application area ===== */
.print-area { display: none; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===============================================================
   PRINT STYLES
   =============================================================== */
@media print {
  body { background: #fff !important; }
  #mainNav, .page-hero, .section, .footer, .back-to-top,
  #membershipForm, #successActions, #memberMsg, .reg-fee-banner { display: none !important; }

  .print-area {
    display: block !important;
    color: #000;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 12px;
    padding: 0;
    margin: 0;
  }
  .print-header {
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 3px solid #c9a227;
    padding-bottom: 12px;
    margin-bottom: 16px;
  }
  .print-logo { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; }
  .print-title { flex: 1; text-align: center; }
  .print-title h1 { font-size: 16px; margin: 0; color: #0d1b3e; font-family: "Cormorant Garamond", serif; }
  .print-title h2 { font-size: 13px; margin: 4px 0 0; color: #c9a227; letter-spacing: 1px; text-transform: uppercase; }
  .print-photo { width: 90px; height: 110px; object-fit: cover; border: 1px solid #999; }
  .print-section {
    font-size: 13px;
    color: #fff;
    background: #0d1b3e;
    padding: 4px 8px;
    margin: 14px 0 6px;
    font-family: "Poppins", sans-serif;
  }
  .print-table { width: 100%; border-collapse: collapse; }
  .print-table th, .print-table td {
    border: 1px solid #ccc;
    padding: 5px 8px;
    text-align: left;
    vertical-align: top;
  }
  .print-table th { width: 32%; background: #f3f1ea; font-weight: 600; color: #0d1b3e; }
  .print-declaration { font-size: 11px; margin: 6px 0; line-height: 1.5; }
  .print-signature {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 40px;
  }
  .print-signature div { flex: 1; font-size: 11px; }
  .sig-line { display: block; border-top: 1px solid #000; margin-bottom: 4px; height: 24px; }
  .print-footer { margin-top: 24px; border-top: 1px solid #ccc; padding-top: 8px; font-size: 10px; text-align: center; color: #555; }
  .print-ref { color: #777; }
  a[href]:after { content: ""; }
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  #mainNav { background-color: var(--navy); }
  .navbar-collapse { background: var(--navy); border-radius: 10px; margin-top: 0.8rem; padding: 1rem; }
  .hero-title { font-size: 2.4rem; }
  .section-title { font-size: 2.1rem; }
  .hero-text-col { text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-dots { justify-content: center; }
  .hero-slider { margin-top: 2.5rem; max-height: 420px; aspect-ratio: 16 / 10; }
}
@media (max-width: 575px) {
  .section { padding: 4rem 0; }
  .hero-logo { height: 80px; width: 80px; }
  .hero-title { font-size: 1.9rem; }
  .hero-lead { font-size: 1.05rem; }
  .hero-slides { min-height: 300px; }
  .page-hero h1 { font-size: 2.2rem; }
  .back-to-top { bottom: 1rem; right: 1rem; }
  .step-label { display: none; }
  .step-circle { width: 38px; height: 38px; font-size: 0.95rem; }
  .stepper-progress { top: 18px; }
  .form-nav .btn { padding-left: 1.1rem; padding-right: 1.1rem; }
}
