:root {
  --navy: #0d1b2f;
  --navy2: #142744;
  --gold: #b58a3a;
  --gold2: #d0ad67;
  --ivory: #fbf7ef;
  --paper: #fffdf9;
  --ink: #172236;
  --muted: #5e6877;
  --line: #e6dcc9;
  --shadow: 0 18px 45px rgba(13, 27, 47, 0.1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Times New Roman", Times, serif;
  font-size: 17px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}
.top-strip {
  background: var(--navy);
  color: #fff;
  border-bottom: 3px solid var(--gold);
  font-size: 15px;
}
.top-strip-inner {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: flex-end;
  min-height: 34px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 249, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px rgba(13, 27, 47, 0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 74px;
  height: 62px;
  object-fit: contain;
}
.brand strong {
  display: block;
  font-size: 28px;
  line-height: 1.05;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.2px;
}
.brand small {
  display: block;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: 0.1px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav > a,
.dropdown > a {
  padding: 11px 13px;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  border-radius: 10px;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
  background: #fbf3e6;
}
.nav-cta {
  background: var(--gold) !important;
  color: #fff !important;
  padding: 12px 20px !important;
  margin-left: 8px;
  border-radius: 8px !important;
}
.dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 12px;
  padding: 10px;
  z-index: 20;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 16px;
  color: var(--navy);
}
.menu-toggle {
  display: none;
  background: var(--navy);
  color: white;
  border: 0;
  border-radius: 8px;
  padding: 9px 13px;
  font-size: 22px;
}
.hero {
  background: linear-gradient(100deg, #fff7e8 0%, #fffdf9 52%, #eefaff 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero:after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -170px;
  width: 560px;
  height: 560px;
  background: url("/assets/images/logo.jpg") center/contain no-repeat;
  opacity: 0.045;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 70px;
  align-items: center;
  padding: 82px 0 82px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
  color: #36248c;
  font-weight: 700;
}
.eyebrow:before {
  content: "";
  width: 44px;
  height: 2px;
  background: var(--gold);
}
h1,
h2,
h3 {
  font-family: "Times New Roman", Times, serif;
  line-height: 1.16;
  color: var(--navy);
  margin: 0 0 18px;
}
h1,
body h1,
section h1,
div h1,
.container h1,
.content h1,
.hero h1,
.page-hero h1 {
    font-size: clamp(26px, 4.4vw, 26px) !important;
    letter-spacing: -0.8px !important;
    font-family: "Times New Roman", Times, serif !important;
    line-height: 1.15 !important;
    font-weight: 700 !important;
    text-align: justify !important;
}

h2,
body h2,
section h2,
div h2,
.container h2,
.content h2,
.hero h2,
.page-hero h2 {
    font-size: clamp(22px, 4vw, 22px) !important;
    letter-spacing: -0.6px !important;
    font-family: "Times New Roman", Times, serif !important;
    line-height: 1.18 !important;
    font-weight: 700 !important;
    text-align: justify !important;
}

h3,
body h3,
section h3,
div h3,
.container h3,
.content h3,
.hero h3,
.page-hero h3 {
    font-size: clamp(18px, 3.5vw, 18px) !important;
    letter-spacing: -0.4px !important;
    font-family: "Times New Roman", Times, serif !important;
    line-height: 1.22 !important;
    font-weight: 700 !important;
    text-align: justify !important;
}
.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 7px;
  padding: 13px 24px;
  font-weight: 700;
  border: 1px solid var(--gold);
  font-size: 17px;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-secondary {
  color: var(--gold);
  background: white;
}
.hero-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 20px;
  text-align: center;
}
.hero-card img {
  width: 125px;
  height: 125px;
  object-fit: contain;
  margin-bottom: 20px;
}
.service-strip {
  margin: -48px auto 0;
  position: relative;
  z-index: 5;
}
.strip-grid {
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 16px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
}
.strip-item {
  padding: 28px 25px;
  border-right: 1px solid var(--line);
  min-height: 230px;
}
.strip-item:last-child {
  border-right: 0;
}
.icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fbf3e6;
  color: var(--gold);
  font-size: 24px;
  margin-bottom: 15px;
}
.strip-item h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.strip-item p {
  font-size: 16px;
  color: #49556a;
  margin: 0;
}
.section {
  padding: 78px 0;
}
.dark-section {
  background: linear-gradient(120deg, var(--navy), #102643);
  color: #fff;
}
.dark-section h2,
.dark-section h3 {
  color: #fff;
}
.dark-section h2 {
  color: var(--gold2);
}
.welcome-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: center;
}
.contact-card {
  border-left: 3px solid var(--gold);
  padding-left: 28px;
  margin-top: 36px;
}
.contact-card h3 {
  color: #fff;
  font-size: 33px;
}
.welcome-logo {
  text-align: center;
}
.welcome-logo img {
  max-width: 220px;
  background: #fff;
  padding: 10px;
  box-shadow: var(--shadow);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 35px;
}
.service-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 34px 28px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(13, 27, 47, 0.05);
  min-height: 245px;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  transition: 0.25s;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.check-list li {
  margin: 13px 0;
  padding-left: 32px;
  position: relative;
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.visiting-card {
  border-radius: 10px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.cta {
  background: var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.page-hero {
  background: linear-gradient(100deg, #fff7e8, #eefaff);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(26px, 4.4vw, 26px) !important;
  letter-spacing: -0.8px !important;
  text-align: justify !important;
}
.page-hero h2 {
  font-size: clamp(24px, 4.4vw, 24px) !important;
  letter-spacing: -0.8px !important;
  text-align: justify !important;
}
.page-hero h3 {
  font-size: clamp(22px, 4.4vw, 22px) !important;
  letter-spacing: -0.8px !important;
  text-align: justify !important;
}
.content-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 18px rgba(13, 27, 47, 0.05);
}
.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.form-grid .full {
  grid-column: 1/-1;
}
label {
  font-weight: 700;
  color: var(--navy);
}
input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: "Times New Roman", Times, serif;
  font-size: 17px;
  background: #fff;
}
textarea {
  min-height: 150px;
}
.alert {
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 22px;
}
.success {
  background: #eaf8ee;
  color: #18542b;
}
.error {
  background: #fff1f1;
  color: #811d1d;
}
.footer {
  background: #081426;
  color: #fff;
  border-top: 5px solid var(--gold);
  padding: 35px 0 15px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 35px;
  padding: 52px 0;
}
.footer h3 {
  color: #fff;
  margin: 0 0 10px;
}
.footer p {
    margin: 0 0 8px;
    line-height: 1.45;
}
.footer a,
.footer ul li {
    margin-bottom: 6px;
    line-height: 1.35;
}
.footer-bottom {
    background: #081426;
    padding: 10px 0;
    text-align: center;
}
.subtle {
  color: var(--muted);
}
@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 4%;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .main-nav.open {
    display: flex;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: 0;
    display: block;
    padding-left: 18px;
  }
  .hero-grid,
  .welcome-grid,
  .split,
  .two-col {
    grid-template-columns: 1fr;
  }
  .strip-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .strip-item {
    border-bottom: 1px solid var(--line);
  }
  .hide-sm {
    display: none;
  }
}
@media (max-width: 640px) {
  body {
    font-size: 16px;
  }
  .top-strip-inner {
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 5px 0;
  }
  .brand img {
    width: 56px;
    height: 48px;
  }
  .brand strong {
    font-size: 21px;
  }
  .brand small {
    font-size: 12px;
  }
  .hero-grid {
    padding: 54px 0;
  }
  .strip-grid,
  .services-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .strip-item {
    border-right: 0;
  }
  .section {
    padding: 32px 0;
  }
  .footer-grid {
    gap: 20px;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Basic content-copy deterrent only. This does not replace server-side security. */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input,
textarea,
select,
button,
.allow-select {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

/* Header stability and payment-gateway upgrade pages */
.top-strip-inner {
  justify-content: space-between;
  font-size: 14px;
}
.nav-wrap {
  min-height: 72px;
  gap: 20px;
}
.brand {
  flex: 0 0 auto;
  max-width: 360px;
}
.brand img {
  width: 58px;
  height: 52px;
}
.brand strong {
  font-size: 24px;
  line-height: 1.02;
}
.brand small {
  font-size: 13px;
  line-height: 1.2;
}
.main-nav {
  flex: 1;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: nowrap;
}
.main-nav > a,
.dropdown > a {
  padding: 9px 10px;
  font-size: 16px;
  white-space: nowrap;
}
.nav-cta {
  padding: 10px 16px !important;
}
main {
  position: relative;
  z-index: 1;
  background: #fff;
}

.notice-card,
.fee-calc-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 28px;
}
.fee-calc-card {
  background: linear-gradient(100deg, #fff7e8 0%, #fffdf9 55%, #eefaff 100%);
}
.calculator-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.calc-result {
  margin-top: 22px;
  background: var(--navy);
  color: #fff;
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  border-bottom: 4px solid var(--gold);
}
.calc-result strong {
  font-size: 30px;
  color: var(--gold2);
}
.calc-result small {
  color: #d9e1ee;
  width: 100%;
}
.pricing-service {
  padding: 46px 0 28px;
  border-bottom: 1px solid var(--line);
}
.pricing-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 14px 35px rgba(13, 27, 47, 0.07);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.price-card.highlight-card {
  border-color: var(--gold);
  box-shadow: 0 18px 45px rgba(181, 138, 58, 0.18);
}
.badge {
  position: absolute;
  top: -12px;
  right: 18px;
  background: var(--gold);
  color: #fff;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 700;
}
.bestfor {
  min-height: 96px;
  color: #3f4c60;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 11px 0;
}
.price-row strong {
  color: var(--navy);
  font-size: 23px;
}
.price-card h4 {
  margin: 18px 0 0;
  color: var(--gold);
  font-size: 18px;
}
.compact-list li {
  margin: 8px 0;
  line-height: 1.45;
}
.upgrade-box {
  background: #fbf7ef;
  border-left: 3px solid var(--gold);
  padding: 13px 14px;
  border-radius: 8px;
  margin: 18px 0;
  color: #344055;
}
.price-btn {
  margin-top: auto;
  justify-content: center;
}
.comparison-card {
  margin-top: 40px;
}
.footer-grid {
  padding: 30px 0 26px;
}
.footer-bottom .container {
  text-align: center !important;
}

@media (max-width: 1180px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 4%;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: 0;
    display: block;
    padding-left: 18px;
  }
}
@media (max-width: 980px) {
  .calculator-grid,
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-head { flex-direction: column; }
  .brand { max-width: 300px; }
}

/* Service request package actions */
.mini-package-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.mini-package-actions .btn {
  padding: 10px 16px;
}
@media (max-width: 640px) {
  .mini-package-actions .btn {
    width: 100%;
    justify-content: center;
  }
}


/* Detailed content upgrades */
.service-explain-grid,
.process-grid,
.readiness-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.detailed-service-card,
.process-service-card,
.readiness-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 28px;
  box-shadow: 0 12px 30px rgba(13, 27, 47, 0.06);
}
.detailed-service-card h2,
.process-service-card h2,
.readiness-card h2 {
  color: var(--navy);
  margin-top: 0;
}
.caution-list li:before {
  content: "!";
}
.numbered-steps {
  margin: 18px 0 24px;
  padding-left: 22px;
}
.numbered-steps li {
  margin: 12px 0;
  line-height: 1.55;
}
.faq-section-title {
  margin: 34px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(13, 27, 47, 0.04);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 17px 20px;
  font-weight: 700;
  color: var(--navy);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:after {
  content: "+";
  float: right;
  color: var(--gold);
  font-weight: 700;
}
.faq-item[open] summary:after { content: "–"; }
.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: #3f4c60;
}
.inline-checks {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.footer-grid-balanced {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  justify-items: stretch;
  gap: 48px;
  padding: 34px 0 30px;
}
.footer-col {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.footer-col h3 {
  min-height: 32px;
}
.footer-col ul {
  list-style-position: outside;
  margin: 0;
  padding-left: 20px;
}
.footer-col li {
  margin: 0 0 8px;
}
.footer-bottom {
  padding: 12px 0;
  text-align: center;
}
.footer-bottom .container {
  text-align: center !important;
}
@media (max-width: 900px) {
  .service-explain-grid,
  .process-grid,
  .readiness-grid,
  .footer-grid-balanced {
    grid-template-columns: 1fr;
  }
  .footer-col {
    min-height: auto;
  }
}
