/**
 * MCA Landing Page Stylesheet
 *
 * @package Libero_Child
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

.mca-landing-page {
  --navy: #1B2437;
  --navy-deep: #12182A;
  --navy-mid: #242F47;
  --gold: #D99A44;
  --gold-deep: #C17F2E;
  --cream: #F7F4EE;
  --paper: #FCFBF8;
  --ink: #232A38;
  --slate: #5B6273;
  --line: #E7E2D8;
  --white: #fff;
  --black: #000;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, Segoe UI, sans-serif;

  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.mca-landing-page * {
  box-sizing: border-box;
}

.mca-landing-page img {
  max-width: 100%;
  display: block;
}

.mca-landing-page h1,
.mca-landing-page h2,
.mca-landing-page h3,
.mca-landing-page h4,
.mca-landing-page h5,
.mca-landing-page h6,
.mca-landing-page p {
  line-height: 1.6;
}

.mca-landing-page a {
  color: inherit;
  text-decoration: none;
}

.mca-landing-page .wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.mca-landing-page ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

@media(max-width:600px) {
  .page-template-template-mca-landing .mkd-wrapper-inner .mkd-content {
    margin-bottom: 0 !important;
  }
}

/* ================= HERO ================= */
.mca-landing-page .hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(100deg, rgba(18, 24, 42, .94) 20%, rgba(18, 24, 42, .55) 65%, rgba(18, 24, 42, .25) 100%), url('/wp-content/uploads/2026/09/landing-page-hero-image.jpg') center/cover no-repeat;
  padding: 70px 0 42px;
}

.mca-landing-page .hero .wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
}

.mca-landing-page .hero h1 {
  font-family: var(--serif);
  color: var(--white);
  font-size: 42px;
  font-weight: 700;
  max-width: 640px;
  line-height: 1.15;
  margin: 0;
}

.mca-landing-page .breadcrumb {
  color: #C6CAD6;
  font-size: 13.5px;
  font-weight: 500;
}

.mca-landing-page .breadcrumb span {
  color: var(--gold);
  margin: 0 6px;
}

/* ================= TRUST STRIP ================= */
.mca-landing-page .trust {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.mca-landing-page .trust .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  padding: 18px 24px;
  flex-wrap: wrap;
}

.mca-landing-page .trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: .3px;
}

.mca-landing-page .trust-item .ic {
  width: 17px;
  height: 17px;
  color: var(--gold-deep);
  flex-shrink: 0;
}

/* ================= EXPERTISE / STATS ================= */
.mca-landing-page .expertise {
  background: var(--cream);
  position: relative;
  padding: 64px 0 58px;
  overflow: hidden;
}

.mca-landing-page .expertise::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 120px);
  pointer-events: none;
}

.mca-landing-page .expertise-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 44px;
}

.mca-landing-page .expertise-eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.mca-landing-page .expertise-head h2 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 30px;
  font-weight: 700;
  margin: 0;
  text-transform: capitalize;
}

.mca-landing-page .expertise-head p {
  color: var(--slate);
  font-size: 15px;
  margin-top: 10px;
}

.mca-landing-page .file-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
  z-index: 1;
}

.mca-landing-page .file-tab {
  background: var(--navy-mid);
  border: 1px solid rgba(217, 154, 68, .22);
  border-radius: 6px;
  padding: 30px 22px 26px;
  position: relative;
  transition: transform .25s ease, border-color .25s ease;
}

.mca-landing-page .file-tab::before {
  content: '';
  position: absolute;
  top: -9px;
  left: 22px;
  width: 46px;
  height: 9px;
  background: var(--gold);
  border-radius: 3px 3px 0 0;
}

.mca-landing-page .file-tab:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.mca-landing-page .file-tab .num {
  font-family: var(--serif);
  font-size: 36px !important;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.mca-landing-page .file-tab .num sup {
  font-weight: 700;
  margin-left: 2px;
}

.mca-landing-page .file-tab .lbl {
  color: var(--white);
  font-size: 13.5px;
  font-weight: 700;
  margin-top: 12px;
  letter-spacing: .3px;
}

.mca-landing-page .file-tab .sub {
  color: #9198AA;
  font-size: 12px;
  margin-top: 5px;
  line-height: 1.5;
}

/* ================= MAIN CONTENT + SIDEBAR ================= */
.mca-landing-page .main {
  padding: 64px 0 40px;
}

.mca-landing-page .main .wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 52px;
  align-items: start;
}

.mca-landing-page .content h2 {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 700;
  color: var(--navy);
  margin: 34px 0 14px;
  text-transform: none;
}

.mca-landing-page .content h2:first-child {
  margin-top: 0;
}

.mca-landing-page .content h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 22px 0 10px;
}

.mca-landing-page .content p {
  color: var(--slate);
  font-size: 15.5px;
  margin-bottom: 14px;
}

.mca-landing-page .content ul.check {
  margin: 16px 0 22px;
}

.mca-landing-page .content ul.check li {
  display: flex;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.mca-landing-page .content ul.check li:last-child {
  border-bottom: none;
}

.mca-landing-page .content ul.check .ic {
  width: 19px;
  height: 19px;
  color: var(--gold-deep);
  flex-shrink: 0;
  margin-top: 2px;
}

.mca-landing-page .pull {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 22px 26px;
  margin: 26px 0;
  border-radius: 2px;
}

.mca-landing-page .pull p {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
}

.mca-landing-page .pull span {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 12.5px;
  color: var(--slate);
  margin-top: 10px;
  font-weight: 600;
}

.mca-landing-page .process {
  display: grid;
  gap: 16px;
  margin: 20px 0 8px;
}

.mca-landing-page .process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
}

.mca-landing-page .process-step .idx {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-deep);
  width: 34px;
  flex-shrink: 0;
}

.mca-landing-page .process-step h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  margin-top: 0;
  text-transform: capitalize;
}

.mca-landing-page .process-step p {
  font-size: 14px;
  margin: 0;
  color: var(--slate);
}

/* Dynamic Overflow Control for Sticky Sidebar vs Uncover Footer */
html.mca-sticky-active,
html.mca-sticky-active body {
  overflow-y: visible !important;
}

body[class*="template-mca-landing"] .mkd-wrapper,
body[class*="template-mca-landing"] .mkd-wrapper-inner,
body[class*="template-mca-landing"] .mkd-content-inner,
body[class*="template-mca-landing"] .mkd-container,
body[class*="template-mca-landing"] .mkd-container-inner,
body[class*="template-mca-landing"] .mkd-full-width,
body[class*="template-mca-landing"] .mkd-full-width-inner {
  overflow: visible !important;
}


.mca-landing-page,
.mca-landing-page .main,
.mca-landing-page .main .wrap {
  overflow: visible !important;
}

/* ---- SIDEBAR ---- */
.mca-landing-page .sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 30px;
  align-self: flex-start;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 10;
  will-change: position, top;
}

/* Offset top when WordPress Admin Bar is present */
body.admin-bar .mca-landing-page .sidebar {
  top: 62px;
}



.mca-landing-page .side-card {
  width: 100%;
  background: var(--navy);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 30px -12px rgba(20, 25, 45, .35);
}

.mca-landing-page .side-card-head {
  background: var(--navy-deep);
  padding: 20px 22px;
  text-align: center;
}

.mca-landing-page .side-card-head h4 {
  font-family: var(--serif);
  color: var(--white);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
  margin: 0;
  text-transform: capitalize;
}

.mca-landing-page .side-card-head p {
  color: var(--gold);
  font-size: 12px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: .5px;
  margin-top: 3px;
  margin-bottom: 0;
}

.mca-landing-page .side-form {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.mca-landing-page .side-form form {
  display: flex;
  flex-direction: column;
  gap: 11px; 
}

.mca-landing-page .side-form input,
.mca-landing-page .side-form textarea {
  width: 100%;
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 5px;
  padding: 12px 13px;
  color: var(--white);
  font-size: 13.5px;
  font-family: var(--sans);
  margin: 0;
  height: auto;
}

.mca-landing-page .side-form input::placeholder,
.mca-landing-page .side-form textarea::placeholder {
  color: #8B92A5;
}

.mca-landing-page .side-form textarea {
  resize: vertical;
  min-height: 70px;
}

.mca-landing-page .side-form .submit-button {
  margin-top: 4px;
}

.mca-landing-page .side-form .submit-button p {
  position: relative;
}

.mca-landing-page .side-form input[type="submit"] {
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  padding: 15px 25px;
  font-weight: 800;
  font-size: 13px;
  line-height: 1;
  letter-spacing: .6px;
  border-radius: 5px;
  cursor: pointer;
  transition: background .2s;
  width: 100%;
}

.mca-landing-page .side-form input[type="submit"]:hover {
  background: var(--gold-deep);
  color: var(--white);
}

.mca-landing-page .side-form .wpcf7-spinner {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.mca-landing-page form .wpcf7-response-output {
  color: var(--white);
  margin: 0 10px 10px;
}

.mca-landing-page .side-list {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}

.mca-landing-page .side-list-head {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 16px;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
}

.mca-landing-page .side-list-head span {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2px;
  font-weight: 700;
  margin-top: 3px;
}

.mca-landing-page .side-list ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: background .2s, color .2s;
}

.mca-landing-page .side-list ul li:last-child a {
  border-bottom: none;
}

.mca-landing-page .side-list ul li a:hover {
  color: var(--gold-deep);
  background: var(--cream);
}

.mca-landing-page .side-list ul li a .arrow {
  color: var(--gold-deep);
  font-size: 13px;
}

.mca-landing-page .side-badge {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  text-align: center;
  width: 100%;
}

.mca-landing-page .side-badge .stars {
  color: var(--gold-deep);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.mca-landing-page .side-badge p {
  font-size: 13px;
  color: var(--slate);
  font-style: italic;
  margin-bottom: 6px;
}

.mca-landing-page .side-badge strong {
  font-size: 12.5px;
  color: var(--navy);
}

/* ================= CTA BANNER ================= */
.mca-landing-page .cta {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.mca-landing-page .cta::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(217, 154, 68, .18);
  border-radius: 50%;
}

.mca-landing-page .cta::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 20px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(217, 154, 68, .14);
  border-radius: 50%;
}

.mca-landing-page .cta .wrap {
  position: relative;
  z-index: 1;
  padding: 64px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.mca-landing-page .cta-txt .expertise-eyebrow {
  margin-bottom: 12px;
}

.mca-landing-page .cta-txt h2 {
  font-family: var(--serif);
  color: var(--white);
  font-size: 32px;
  font-weight: 700;
  max-width: 520px;
  line-height: 1.25;
  margin: 0;
  text-transform: capitalize;
}

.mca-landing-page .cta-txt p {
  color: #AEB4C4;
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 15px;
  max-width: 480px;
}

.mca-landing-page .cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.mca-landing-page .btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  padding: 16px 30px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .5px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background .2s, color .2s;
}

.mca-landing-page .btn-primary:hover {
  background: var(--gold-deep);
  color: var(--white);
}

.mca-landing-page .btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, .3);
  color: var(--white);
  padding: 16px 30px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: border-color .2s, color .2s;
}

.mca-landing-page .btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ================= FAQ ACCORDION ================= */
.mca-landing-page .faq {
  background: var(--cream);
  padding: 64px 0;
}

.mca-landing-page .faq-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.mca-landing-page .faq-head .expertise-eyebrow {
  color: var(--gold-deep);
}

.mca-landing-page .faq-head h2 {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--navy);
  font-weight: 700;
  margin: 0;
  text-transform: capitalize;
}

.mca-landing-page .faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mca-landing-page .faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.mca-landing-page .faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--navy);
}

.mca-landing-page .faq-q .plus {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-deep);
  font-size: 16px;
  font-weight: 700;
  transition: transform .25s, background .25s, color .25s, border-color .25s;
}

.mca-landing-page .faq-item.open .plus {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.mca-landing-page .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.mca-landing-page .faq-a .faq-answer-text{
  padding: 0 24px 20px;
}
.mca-landing-page .faq-a p {
  color: var(--slate);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
}

.mca-landing-page .faq-item.open .faq-a {
  max-height: 260px;
}

/* BACK TO TOP */
.mca-landing-page .to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 50;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
  transition: background .2s, color .2s;
}

.mca-landing-page .to-top:hover {
  background: var(--gold);
  color: var(--white);
}

/* RESPONSIVE DESIGN */
@media (max-width: 980px) {

  .mca-landing-page .file-row {
    grid-template-columns: 1fr 1fr;
  }

  .mca-landing-page .hero h1 {
    font-size: 32px;
  }

  .mca-landing-page .cta .wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .mca-landing-page .main .wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .mca-landing-page .file-row {
    grid-template-columns: 1fr;
  }

  .mca-landing-page .trust .wrap {
    gap: 20px;
  }
}