/* =========================
   GLOBAL RESET
   ========================= */
* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  background: #f4f5f7;
  color: #222;
}

/* =========================
   TOP BAR
   ========================= */
.top-bar {
  background: #111;
}

.top-bar-inner {
  max-width: 1200px;
  margin: auto;
  padding: 8px 16px;
  display: flex;
  justify-content: flex-end;
}

/* =========================
   HEADER / NAV
   ========================= */
.header {
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.header-inner {
  max-width: 1400px;
  margin: auto;
  padding: 2px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 120px;
  width: auto;
  display: block;
}

/* =========================
   NAV STRUCTURE
   ========================= */
.nav > ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.nav li {
  position: relative;
}

.nav a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
  padding: 8px 0;
  display: block;
  cursor: pointer;
}

/* =========================
   DROPDOWNS (CLICK-BASED)
   ========================= */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #f7f7f7;
  padding: 6px 0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
}

.dropdown.open > .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  padding: 8px 14px;
  font-size: 14px;
  color: #111;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: #eaeaea;
}

/* =========================
   THREE-LINE MENU BUTTON
   ========================= */
.menu-trigger {
  cursor: pointer;
  font-size: 20px;
  padding: 8px 0;
}

/* =========================
   SLIDE-IN SIDE MENU
   ========================= */

.mega-menu {
  position: absolute;
  top: 58px;              /* sits under header */
  right: 16px;
  width: auto;
  min-width: 260px;
  max-width: 340px;

  background: linear-gradient(180deg, #1a1a1a, #0f0f0f);
  color: #fff;

  padding: 16px 18px;
  border-radius: 10px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.45);

  display: none;
  z-index: 6000;
}

.mega-menu.active {
  display: block;
}

/* close button */
.mega-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* section titles */
.mega-menu h4 {
  margin: 14px 0 6px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* links */
.mega-menu a {
  display: block;
  padding: 6px 0;
  font-size: 12px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.mega-menu a:hover {
  opacity: 0.85;
}

/* ORGANIC BUBBLE SHAPES – MOBILE */
@media (max-width: 700px) {
  .portal-card {
    height: 320px;
  }

  .portal-overlay {
    padding: 26px;
  }
}

/* =========================
   GLOBAL CONTENT WIDTH CONTROL
   ========================= */

.page {
  padding: 60px 0;
}

.page-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}


/* =========================
   HERO ICONS
   ========================= */
.hero-icons {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 9999;
}

.hero-icons a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.45;
  background: rgba(0,0,0,0.45);
  border-radius: 50%;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.hero-icons a:hover {
  opacity: 1;
  transform: translateX(-4px);
}

.hero-icons svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

/* =========================
   FOOTER
   ========================= */
.footer {
  text-align: center;
  padding: 24px;
  color: #666;
  font-size: 14px;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 900px) {
  .nav > ul {
    gap: 16px;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: #eee;
    border-radius: 0;
  }
}
/* =========================
   DESKTOP HOVER DROPDOWNS
   (ONLY ON HOVER-CAPABLE DEVICES)
   ========================= */
@media (hover: hover) and (pointer: fine) {
  .dropdown:hover > .dropdown-menu {
    display: block;
  }
}
/* SERVICE PORTALS – BASE */
.service-portals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 34px;
  margin-top: 40px;
}

.portal-card {
  position: relative;
  height: 340px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.portal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.35);
}

/* Background images */
.portal-card.pm {
  background: url("https://images.unsplash.com/photo-1560518883-ce09059eeffa") center/cover no-repeat;
}

.portal-card.leasing {
  background: url("https://images.unsplash.com/photo-1521791136064-7986c2920216") center/cover no-repeat;
}

.portal-card.short-term {
  background: url("https://images.unsplash.com/photo-1500375592092-40eb2168fd21") center/cover no-repeat;
}

/* Overlay */
.portal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.25)
  );
  color: #fff;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
/* TRUE BUBBLE SHAPES – TALLER, ROUND */
.portal-card {
  border-radius: 50% 50% 48% 52% / 55% 55% 45% 45%;
}

/* Slight variation per bubble */
.portal-card.pm {
  border-radius: 52% 48% 50% 50% / 58% 52% 48% 42%;
}

.portal-card.leasing {
  border-radius: 48% 52% 55% 45% / 52% 58% 42% 48%;
}

.portal-card.short-term {
  border-radius: 50% 50% 45% 55% / 60% 50% 40% 50%;
}

/* TEXT SAFETY + SPACING */
.portal-card {
  height: 380px; /* taller bubble */
}

.portal-overlay {
  padding: 34px;
  justify-content: center; /* center text instead of bottom */
  text-align: center;
}

.portal-overlay h2 {
  margin-bottom: 12px;
}

.portal-overlay p {
  margin-bottom: 16px;
}

.portal-link {
  display: inline-block;
  margin-top: 6px;
}

.portal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 40px rgba(255,255,255,0.15);
  pointer-events: none;
}
.hero-contact {
  background: url("assets/contact-hero.jpg") center/cover no-repeat;
  height: 380px;
  position: relative;
}

.hero-overlay {
  background: rgba(0,0,0,.55);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  color: #fff;
}

.contact-section {
  padding: 80px 20px;
  background: #f7f7f7;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-image img {
  width: 100%;
  border-radius: 8px;
}

.contact-form-box {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,.1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-info {
  max-width: 1200px;
  margin: 50px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.site-footer {
  background: #000;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.site-footer img {
  height: 70px;
  margin-bottom: 10px;
}

/* MOBILE */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .contact-info {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
/* =========================
   OWNER FAQ STYLES
   ========================= */

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

}

.faq-search {
  margin-bottom: 24px;
}

.faq-search {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.faq-search input {
  width: 320px;
  max-width: 90%;
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 20px;
  border: 1px solid #ccc;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-indicator {
  font-size: 22px;
  transition: transform 0.25s ease;
}

/* IMPORTANT: scoped class — does NOT use .active */
.faq-item.faq-open .faq-indicator {
  transform: rotate(90deg);
}

.faq-answer {
  display: none;
  padding: 0 0 16px 0;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

.faq-item.faq-open .faq-answer {
  display: block;
}

.faq-highlight {
  background: #fff8cc;
}
/* =========================
   PRICING PAGE
   ========================= */

.pricing-container {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 40px;
}

.pricing-intro {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 50px;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 380px));
justify-content: center;
  gap: 40px;
}

.pricing-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.12);
}

.pricing-card h2 {
  margin-top: 0;
  font-size: 24px;
}

.pricing-rate {
  font-size: 36px;
  font-weight: 700;
  margin: 10px 0 20px 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.5;
}

.pricing-note {
  margin-top: 60px;
  font-size: 15px;
  color: #555;
  text-align: center;
}.str-card {
  grid-column: 1 / -1;
  max-width: 380px;
  margin: 0 auto;
}.hero-icons a {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 8px;
  transition: all 0.25s ease;
}

.hero-icons a:hover {
  background: rgba(15, 79, 103, 0.35);
  transform: translateX(-3px);
}/* =========================
   REALTOR REFERRAL PAGE
   ========================= */

.referral-hero {
  background: url("https://images.unsplash.com/photo-1521791136064-7986c2920216") center/cover no-repeat;
  height: 40vh;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}

.hero-overlay-referral {
  background: rgba(0,0,0,0.55);
  padding:60px;
  border-radius:16px;
  text-align:center;
  color:#fff;
}

.hero-words {
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

.slide-left {
  opacity:0;
  transform:translate(-120px,-30px);
  animation:slideFade 1.8s ease forwards;
}

.slide-right {
  opacity:0;
  transform:translate(120px,-30px);
  animation:slideFade 1.8s ease forwards .6s;
}

@keyframes slideFade {
  to {
    opacity:1;
    transform:translate(0,0);
  }
}

.hero-sub {
  margin-top:20px;
  font-size:18px;
  opacity:.9;
}


}

.check-section {
  display:flex;
  justify-content:center;
  padding:60px 20px;
}

.check-box {
  background:#fdfdfd;
  width:650px;
  max-width:95%;
  padding:40px;
  border-radius:14px;
  box-shadow:0 20px 60px rgba(0,0,0,.15);
  position:relative;
}

.check-amount {
  position:absolute;
  top:20px;
  right:30px;
  font-weight:bold;
  font-size:20px;
  color:#0f4f67;
}

.check-body h3 {
  margin:10px 0 20px 0;
}

.check-from,
.check-address {
  font-size:14px;
  color:#555;
}

.referral-form {
  background:#fff;
  padding:40px;
  border-radius:16px;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
  max-width:750px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.referral-form input {
  padding:12px;
  border:1px solid #ccc;
  border-radius:8px;
}

.referral-form button {
  background:#0f4f67;
  color:#fff;
  padding:14px;
  border:none;
  border-radius:8px;
  font-weight:600;
  cursor:pointer;
}

.analysis-btn {
  background:#0f4f67;
  color:#fff;
  padding:14px 24px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
}.slide-left {
  opacity:0;
  transform:translateX(-80px);
  animation:slideFade 1.6s ease forwards;
}

.slide-right {
  opacity:0;
  transform:translateX(80px);
  animation:slideFade 1.6s ease forwards .6s;
}

@keyframes slideFade {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
    transform:translateX(0);
  }
}
/* =========================
   CLEAN BUBBLE CARDS
   ========================= */

.eye-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:50px;
  margin-top:20px;
}

.eye-card {
  position:relative;
  height:300px;
  padding:50px 40px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#fff;

  border-radius:55% 45% 60% 40% / 50% 60% 40% 50%;
  overflow:hidden;
  box-shadow:0 25px 60px rgba(0,0,0,.15);
}
/* Bubble 1 – Ocean */
.eye-card:nth-child(1) {
  background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e")
    center/cover no-repeat;
}

/* Bubble 2 – Palm Trees */
.eye-card:nth-child(2) {
  background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
    url("https://images.unsplash.com/photo-1500375592092-40eb2168fd21")
    center/cover no-repeat;
}

/* Bubble 3 – Tropical Nature */
.eye-card:nth-child(3) {
  background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
    url("https://images.unsplash.com/photo-1501785888041-af3ef285b470")
    center/cover no-repeat;
}
.eye-card h3 {
  margin-bottom:12px;
  font-size:18px;
}

.eye-card p {
  font-size:14px;
  line-height:1.5;
}

/* =========================
   REFERRAL LAYOUT
   ========================= */

/* =========================
   CONTRACT PAPER
   ========================= */

.contract-paper {
  background: #ffffff;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0,0,0,.08);
  position: relative;
}

.contract-paper h2 {
  margin-bottom: 30px;
}

.contract-paper hr {
  margin: 30px 0;
  border: none;
  border-top: 1px solid #ddd;
}

.contract-paper label {
  font-size: 13px;
  font-weight: 600;
  margin-top: 10px;
  display: block;
}

.contract-paper input {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid #ccc;
  margin-bottom: 18px;
  font-size: 14px;
}

.contract-paper button {
  background: #0f4f67;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
}

/* =========================
   CHECK DESIGN
   ========================= */

.check-box {
  background: #fdfdfd;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 30px 70px rgba(0,0,0,.15);
  position: relative;
  overflow: hidden;
}

.check-watermark img {
  position: absolute;
  width: 250px;
  opacity: .05;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.check-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.check-bank {
  font-weight: 700;
  font-size: 18px;
}


.check-payline {
  margin-top: 40px;
  border-bottom: 1px solid #000;
  padding-bottom: 6px;
  font-size: 16px;
}

.check-payline span {
  font-weight: 700;
  margin-left: 8px;
}

.check-amount-line {
  margin-top: 20px;
  border-bottom: 1px solid #000;
  padding-bottom: 6px;
}

.check-footer-row {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  font-size: 14px;
}

.check-signature {
  font-family: cursive;
  font-size: 18px;
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 900px) {
  .referral-layout {
    grid-template-columns: 1fr;
  }
}/* =========================
   NEW REALISTIC CHECK
   ========================= */

.referral-layout {
  max-width:1100px;
  margin:10px auto 80px auto;
  padding:0 40px;
  display:grid;
  grid-template-columns:320px 1fr;
  gap:60px;
  align-items:center;
}

/* =========================
   CONTRACT PAPER FORM
   ========================= */
.notepad-form {
  width:320px;
  height:520px;
  background:url("images/notepad.png") top center no-repeat;
  background-size:100% 100%;
  padding:48px 28px 25px 28px; /* reduced top padding */
  position:relative;
  box-shadow:0 25px 60px rgba(0,0,0,.18);
  border-radius:6px;
  display:flex;
  flex-direction:column;
}
.notepad-form h3 {
  text-align:center;
  margin:0 0 18px 0;
  font-size:18px;
  font-weight:600;
}
.notepad-form input {
  width:100%;
  background:transparent;
  border:none;
  padding:0;
  margin:0 0 9px 0; /* controls spacing between lines */
  font-size:14px;
  height:24px;
  line-height:24px;
}

.notepad-form button {
  background:#0f4f67;
  color:#fff;
  padding:10px;
  border:none;
  border-radius:4px;
  font-weight:600;
  cursor:pointer;

  margin-top:auto;   /* <-- ONLY ADD THIS LINE */
}
 /* =========================
   REALISTIC CHECK 
   ========================= */

.real-check {
  position:relative;
  width:600px;
  max-width:100%;
  height:280px;
  padding:45px 30px 25px 30px;  /* top padding compensates for absolute header */
  border-radius:8px;
  box-shadow:0 30px 70px rgba(0,0,0,.25);
  overflow:hidden;
  margin-left:-40px;  /* shifts check left without touching layout */
  /* === INNER CHECK FRAME === */
box-shadow:
  0 30px 70px rgba(0,0,0,.25),
  inset 0 0 0 1px rgba(0,0,0,.25);

  background:
    linear-gradient(rgba(255,255,255,.55), rgba(255,255,255,.55)),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216")
    center/cover no-repeat;
}

/* top row */
.check-header {
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
}

/* small logo */
.check-logo {
  position:absolute;
  top:18px;
  left:30px;
}

.check-logo img {
  height:60px;
  width:auto;
  opacity:.9;
}

/* date + number */
.check-info {
  text-align:right;
  font-size:12px;
  font-weight:600;
}


/* amount box */
.check-amount-box {
  position:absolute;
  top:120px;
  right:25px;
  padding:3px 12px;
  font-weight:700;
  font-size:12px;
 
}

/* pay line */
.check-pay-line {
  margin-top:90px;  /* compensate for absolute header */
  border-bottom:1px solid #000;
  padding-bottom:6px;
  font-size:14px;
}

.cursive {
  font-family:"Brush Script MT", cursive;
  font-size:22px;
  margin-left:8px;
}

/* written line */
.check-written-line {
  margin-top:12px;
  border-bottom:1px solid #000;
  padding-bottom:6px;
  font-size:14px;
}

/* footer */
.check-footer {
  display:flex;
  justify-content:space-between;
  margin-top:25px;
  font-size:13px;
}

/* signature */
.signature {
  text-align:right;
}

.sig-script {
  font-family:"Brush Script MT", cursive;
  font-size:22px;
  line-height:1;
}

.sig-initials {
  font-size:11px;
  margin-top:3px;
}

/* routing line */
.routing-line {
  position:absolute;
  bottom:12px;
  left:0;
  right:0;
  text-align:center;
  font-family:monospace;
  letter-spacing:2px;
  font-size:12px;
  opacity:.9;
}/* Placing date and check num back to corner */
.check-info {
  position: absolute;
  top: 20px;
  right: 30px;
  text-align: right;
  z-index: 2;
}/* === CHECK NUMBER STYLE === */
.check-number {
  font-family: "Courier New", monospace;  /* real check-style font */
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 4px;
}/* === CHECK DATE STYLE === */
.check-date {
  margin-top: 6px;
  font-size: 12px;
  border-bottom: 1px solid #000;
  padding-bottom: 3px;
}/* =========================
   SMS CONSENT + SMALL SUBMIT
   ========================= */

.sms-consent {
  font-size:11px;
  line-height:1.4;
  display:flex;
  gap:6px;
  align-items:flex-start;
  margin-top:6px;
}

.sms-consent input {
  margin-top:3px;
}

.form-bottom {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:12px;
}

.captcha-placeholder {
  font-size:12px;
  background:#f1f1f1;
  padding:6px 10px;
  border-radius:4px;
  border:1px solid #ccc;
}

.small-submit {
  background:#0f4f67;
  color:#fff;
  padding:6px 16px;
  border:none;
  border-radius:4px;
  font-weight:600;
  cursor:pointer;
}
/* =========================
   ACCESSIBILITY MODAL
   ========================= */

.accessibility-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
}

.accessibility-content {
  background: #ffffff;
  width: 60%;
  max-width: 720px;
  margin: 8% auto;
  padding: 40px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.accessibility-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 26px;
  cursor: pointer;
}/* =========================
   LEFT SITEMAP PANEL
   ========================= */

.sitemap-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 9998;
}

.sitemap-panel {
  position: fixed;
  top: 0;
  left: -320px;
  width: 320px;
  height: 100%;
  background: #111;
  color: #fff;
  padding: 40px 25px;
  transition: left 0.3s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.sitemap-panel.active {
  left: 0;
}

.sitemap-overlay.active {
  display: block;
}

.sitemap-panel a {
  color: #fff;
  text-decoration: none;
  margin-bottom: 14px;
  font-size: 14px;
}

.sitemap-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 20px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}
/* =========================
   COMPLIANCE LOGOS
   ========================= */

.compliance-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 16px 0;
}

.compliance-logos img {
  height: 38px;
  width: auto;
  opacity: 0.9;
}.footer a svg {
  fill: #0f4f67;
}
.footer svg path {
  fill: #0f4f67;
}
/* Brand link color */
a {
    color: #0f4f67;
    text-decoration: none;
    transition: color .2s ease;
}

a:hover {
    color: #0b2f3d;
    text-decoration: underline;
}

a:visited {
    color: #0f4f67;
}