/* ============================================================
   SNEHA ENTERPRISES — SHARED CSS
   vars, reset, typography, nav, footer, animations
   ============================================================ */
:root {
  --navy: #1A2E6B;
  --navy-dark: #0F1D47;
  --navy-mid: #233480;
  --gold: #C8912A;
  --gold-light: #F5E6C8;
  --gold-dark: #8B6318;
  --green: #1B6B2A;
  --green-mid: #2E8B3A;
  --green-light: #E8F5E9;
  --cream: #FDFAF4;
  --warm: #F5EFE0;
  --text: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-light: #7A7A7A;
  --border: #E0D8C8;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06);
  --shadow-md: 0 8px 28px rgba(26, 46, 107, .1);
  --shadow-lg: 0 20px 56px rgba(26, 46, 107, .16);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* PROGRESS BAR */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
  z-index: 10000;
  width: 0;
  transition: width .1s;
}

/* TICKER */
.ticker {
  background: var(--navy);
  overflow: hidden;
  padding: 9px 0;
  position: relative;
}

.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 1;
  pointer-events: none;
}

.ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--navy), transparent);
}

.ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--navy), transparent);
}

.ticker-inner {
  display: flex;
  gap: 50px;
  white-space: nowrap;
  width: max-content;
  animation: tickerScroll 30s linear infinite;
}

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
}

.ticker-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(253, 250, 244, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--border);
  padding: 0 2rem;
  animation: navSlideDown .5s ease both;
}

@keyframes navSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}

.logo-wrap img {
  height: 62px;
  width: auto;
  object-fit: contain;
  transition: transform .3s;
}

.logo-wrap:hover img {
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  cursor: pointer;
  transition: color .2s;
  letter-spacing: .3px;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: white !important;
  padding: 9px 22px !important;
  border-radius: 8px;
  font-weight: 700 !important;
  border-bottom: none !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(200, 145, 42, .35) !important;
  letter-spacing: .5px;
  font-size: 13px !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 38px !important;
  transition: all .25s ease !important;
  /* prevent inherited nav-links a styles from adding extra spacing */
  padding-bottom: 9px !important;
}

.nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(200, 145, 42, .5) !important;
  background: linear-gradient(135deg, var(--gold-dark), #6B4B10) !important;
  border-bottom-color: transparent !important;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 76px;
  background: rgba(253, 250, 244, .98);
  backdrop-filter: blur(14px);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  padding: 20px 40px;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  transition: background .2s;
}

.mobile-menu a:hover {
  background: var(--warm);
}

.mobile-menu a.m-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  margin-top: 20px;
  border-radius: 8px;
  width: calc(100% - 48px);
  border: none;
}

/* CERT BAR */
.cert-bar {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  padding: 13px 2rem;
}

.cert-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  transition: transform .2s;
}

.cert-item:hover {
  transform: scale(1.08);
}

.cert-sep {
  color: rgba(255, 255, 255, .4);
  font-size: 16px;
}

/* SECTION UTILITIES */
section {
  padding: 80px 2rem;
}

.sec-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}

.sec-sub {
  font-size: 15px;
  color: var(--text-light);
  max-width: 540px;
  line-height: 1.75;
}

.sec-header {
  text-align: center;
  margin-bottom: 52px;
}

.sec-header .sec-sub {
  margin: 0 auto;
}

/* BUTTONS */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  padding: 13px 28px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .25s;
  box-shadow: 0 4px 14px rgba(200, 145, 42, .3);
  position: relative;
  overflow: hidden;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 145, 42, .45);
}

.btn-navy {
  background: var(--navy);
  color: white;
  padding: 13px 28px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}

.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(26, 46, 107, .3);
}

.btn-ghost {
  background: transparent;
  color: white;
  padding: 13px 28px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, .35);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .25s;
}

.btn-ghost:hover {
  border-color: white;
  background: rgba(255, 255, 255, .08);
  transform: translateY(-1px);
}

/* CARDS BASE */
.card-base {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow .35s, border-color .3s;
  position: relative;
  overflow: hidden;
}

.card-base:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.card-base::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--navy));
  transition: width .4s ease;
}

.card-base:hover::after {
  width: 100%;
}

/* FEATURE CARDS */
.feat-card {
  padding: 30px;
}

.feat-card:hover .feat-icon {
  transform: scale(1.2) rotate(-5deg);
}

.feat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
}

.fi-navy {
  background: #EEF1FB;
}

.fi-gold {
  background: var(--gold-light);
}

.fi-green {
  background: var(--green-light);
}

.feat-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  margin-bottom: 9px;
  color: var(--navy);
}

.feat-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* FEAT GRID */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* FOOTER */
footer {
  background: #0A1628;
  color: rgba(255, 255, 255, .65);
  padding: 56px 2rem 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 44px;
}

.footer-logo {
  margin-bottom: 14px;
}

.footer-logo img {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
  transition: opacity .3s, transform .3s;
}

.footer-logo img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.footer-brand p {
  font-size: 12px;
  line-height: 1.8;
}

.footer-col h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 9px;
}

.footer-col ul li a {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  cursor: pointer;
  transition: color .2s, padding-left .2s;
  position: relative;
  padding-left: 0;
}

.footer-col ul li a:hover {
  color: white;
  padding-left: 14px;
}

.footer-col ul li a::before {
  content: '→';
  position: absolute;
  left: -14px;
  opacity: 0;
  transition: opacity .2s, left .2s;
}

.footer-col ul li a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 11px;
}

.footer-soc {
  display: flex;
  gap: 10px;
}

.soc-btn {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  color: rgba(255, 255, 255, .5);
  transition: background .2s, color .2s;
}

.soc-btn:hover {
  background: rgba(255, 255, 255, .1);
  color: white;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s cubic-bezier(.22, .68, 0, 1.2), transform .7s cubic-bezier(.22, .68, 0, 1.2);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .7s cubic-bezier(.22, .68, 0, 1.2), transform .7s cubic-bezier(.22, .68, 0, 1.2);
}

.reveal-left.visible {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .7s cubic-bezier(.22, .68, 0, 1.2), transform .7s cubic-bezier(.22, .68, 0, 1.2);
}

.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.reveal-zoom {
  opacity: 0;
  transform: scale(.88);
  transition: opacity .65s ease, transform .65s cubic-bezier(.34, 1.56, .64, 1);
}

.reveal-zoom.visible {
  opacity: 1;
  transform: scale(1);
}

.d1 {
  transition-delay: .1s
}

.d2 {
  transition-delay: .2s
}

.d3 {
  transition-delay: .3s
}

.d4 {
  transition-delay: .4s
}

.d5 {
  transition-delay: .5s
}

.d6 {
  transition-delay: .6s
}

/* ANIMATIONS */
@keyframes floatY {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

@keyframes glowPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(200, 145, 42, 0)
  }

  50% {
    box-shadow: 0 0 20px 6px rgba(200, 145, 42, .22)
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(.3)
  }

  50% {
    opacity: 1;
    transform: scale(1.05)
  }

  70% {
    transform: scale(.95)
  }

  100% {
    transform: scale(1)
  }
}

@keyframes pillPop {
  0% {
    opacity: 0;
    transform: scale(.5)
  }

  80% {
    transform: scale(1.1)
  }

  100% {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(30px) skewY(2deg)
  }

  to {
    opacity: 1;
    transform: translateY(0) skewY(0)
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(80px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes cardFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes shimmerSlide {
  0% {
    left: -100%
  }

  100% {
    left: 150%
  }
}

/* FORM INPUTS */
label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
  letter-spacing: .2px;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  transition: border-color .25s, box-shadow .25s, transform .2s;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26, 46, 107, .08);
  transform: translateY(-1px);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

/* RESPONSIVE */
@media(max-width:900px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-inner {
    height: 64px;
  }

  .logo-wrap img {
    height: 50px;
  }

  section {
    padding: 52px 1.25rem;
  }

  .sec-title {
    font-size: 28px;
  }

  .feat-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cert-inner {
    gap: 16px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .cert-sep {
    display: none;
  }
}

@media(max-width:600px) {
  section {
    padding: 44px 1rem;
  }

  .sec-title {
    font-size: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ── NAV DROPDOWN ───────────────────────────────────────────── */
.nav-dropdown {
  position: relative
}

.nav-drop-trigger {
  cursor: pointer
}

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 190px;
  padding: 8px 0;
  box-shadow: 0 12px 36px rgba(26, 46, 107, .14);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 200
}

.nav-dropdown:hover .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0)
}

.nav-drop-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--text-mid);
  text-decoration: none;
  transition: background .15s, color .15s;
  border-bottom: none !important
}

.nav-drop-menu a:hover {
  background: var(--cream);
  color: var(--navy)
}

.nav-drop-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: white;
  border: 1px solid var(--border);
  border-bottom: none;
  border-right: none;
  transform: translateX(-50%) rotate(45deg)
}

/* ── FLOATING CONTACT BUTTONS ───────────────────────────────── */
.float-btns {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 990;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px
}

.float-main {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  border: none;
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), box-shadow .25s;
  animation: glowPulse 3s ease-in-out infinite
}

.float-main:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37, 211, 102, .55)
}

.float-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease
}

.float-options.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all
}

.float-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none
}

.float-label {
  background: rgba(20, 20, 20, .82);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  backdrop-filter: blur(6px)
}

.float-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
  transition: transform .2s cubic-bezier(.34, 1.56, .64, 1)
}

.float-option:hover .float-icon {
  transform: scale(1.12)
}

.fi-wa {
  background: #25D366
}

.fi-call {
  background: var(--navy)
}

.fi-mail {
  background: var(--gold)
}

.fi-chat {
  background: #7C3AED
}

/* Tooltip label disappears on small screens */
@media(max-width:600px) {
  .float-label {
    display: none
  }

  .float-btns {
    bottom: 20px;
    right: 16px
  }

  .float-main {
    width: 50px;
    height: 50px;
    font-size: 22px
  }

  .float-icon {
    width: 42px;
    height: 42px;
    font-size: 18px
  }
}

/* stagger d5-d8 */
.d5 {
  transition-delay: .5s
}

.d6 {
  transition-delay: .6s
}

.d7 {
  transition-delay: .7s
}

.d8 {
  transition-delay: .8s
}

/* PROCESS STEPS (homepage) */
.proc-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 10px;
  transition: transform .3s
}

.proc-step:hover {
  transform: translateY(-5px)
}

.proc-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 3px solid transparent;
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s;
  box-shadow: 0 4px 16px rgba(200, 145, 42, .3)
}

.proc-step:hover .proc-num {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 8px 28px rgba(200, 145, 42, .45)
}

.proc-step h4 {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  margin-bottom: 8px
}

.proc-step p {
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.6
}

@media(max-width:900px) {
  .proc-step {
    grid-column: span 1
  }
}

/* ── FONT AWESOME ICON FIXES ────────────────────────────────── */
.float-icon i {
  font-size: 20px;
  color: white;
}

.float-icon.fi-wa i {
  font-size: 22px;
}

.float-icon.fi-call i {
  font-size: 18px;
}

.float-icon.fi-mail i {
  font-size: 18px;
}

.float-main i {
  font-size: 24px;
  color: white;
}

/* Reset float-main text content when using FA icons */
.float-main {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── GET QUOTE BUTTON FIX ───────────────────────────────────── */
/* CTA banner button — ensure text perfectly centered */
.cta-banner .btn-gold,
.cta-banner a.btn-gold {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  vertical-align: middle;
}

/* Contact strip links — perfect vertical + horizontal center */
.contact-strip-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 9px;
  line-height: 1;
  vertical-align: middle;
}

/* Nav CTA button center fix — consolidated in main .nav-cta rule above */

/* General button icon alignment */
.btn-gold,
.btn-navy,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
}