/* =========================================================
   Alam Real Estate Law — theme
   Palette carried over from the existing site:
   teal #0C5A78, deep teal #083F56, gold #D9A03C
   ========================================================= */

:root {
    --brand-teal: #0c5a78;
    --brand-teal-dark: #083f56;
    --brand-teal-soft: #12708f;
    --brand-gold: #d9a03c;
    --brand-gold-dark: #bf8828;
    --ink: #223038;
    --ink-soft: #4c5c66;
    --wash: #f2f6f8;
    --line: #e2eaee;
    --white: #ffffff;

    --radius-sm: 6px;
    --radius: 14px;
    --radius-lg: 28px;

    --shadow-card: 0 18px 40px -28px rgba(8, 63, 86, 0.45);
    --shadow-raised: 0 26px 60px -30px rgba(8, 63, 86, 0.55);

    --font-display: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
    --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

/* ---------- base ---------- */
html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.75;
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, .display-title {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--brand-teal);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

p { max-width: 70ch; }
a { color: var(--brand-teal); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--brand-gold-dark); }

:focus-visible {
    outline: 3px solid var(--brand-gold);
    outline-offset: 3px;
}

.section { padding: 5.5rem 0; }
.section-tight { padding: 3.5rem 0; }
.section-wash { background: var(--wash); }

.section-title {
    font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.3rem);
    margin-bottom: 1.25rem;
}

.lead-muted { color: var(--ink-soft); }

.text-gold { color: var(--brand-gold); }
.bg-teal { background: var(--brand-teal); }

/* ---------- buttons ---------- */
.btn {
    font-family: var(--font-display);
    font-weight: 600;
    border-radius: 999px;
    padding: 0.75rem 1.9rem;
    transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.btn-gold {
    background: var(--brand-gold);
    border: 1px solid var(--brand-gold);
    color: #fff;
}
.btn-gold:hover, .btn-gold:focus {
    background: var(--brand-gold-dark);
    border-color: var(--brand-gold-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 26px -16px rgba(191, 136, 40, .9);
}

.btn-teal {
    background: var(--brand-teal);
    border: 1px solid var(--brand-teal);
    color: #fff;
}
.btn-teal:hover, .btn-teal:focus {
    background: var(--brand-teal-dark);
    border-color: var(--brand-teal-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-teal {
    border: 1px solid rgba(255, 255, 255, .55);
    color: #fff;
}
.btn-outline-teal:hover { background: #fff; color: var(--brand-teal); }

/* ---------- top bar ---------- */
.topbar {
    background: var(--brand-teal);
    color: rgba(255, 255, 255, .92);
    font-size: .875rem;
    padding: .55rem 0;
}
.topbar a { color: rgba(255, 255, 255, .92); }
.topbar a:hover { color: var(--brand-gold); }
.topbar i { color: var(--brand-gold); margin-right: .4rem; }

.topbar .social-link {
    width: 30px; height: 30px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
    margin-left: .4rem;
    transition: transform .25s ease, background-color .25s ease;
}
.topbar .social-link i { margin: 0; color: #fff; font-size: .85rem; }
.topbar .social-link:hover { background: var(--brand-gold); transform: translateY(-2px); }

/* ---------- navbar ---------- */
.site-nav {
    background: #fff;
    box-shadow: 0 6px 24px -20px rgba(8, 63, 86, .8);
    padding: .5rem 0;
    transition: box-shadow .3s ease, padding .3s ease;
}
.site-nav.is-stuck {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1030;
    box-shadow: 0 10px 30px -22px rgba(8, 63, 86, .95);
    animation: navDrop .35s ease both;
}
@keyframes navDrop { from { transform: translateY(-100%); } to { transform: translateY(0); } }

.site-nav .navbar-brand img { height: 62px; width: auto; }

.site-nav .nav-link {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--brand-teal-dark);
    margin: 0 .35rem;
    padding: .6rem .2rem;
    position: relative;
}
.site-nav .nav-link::after {
    content: "";
    position: absolute;
    left: .2rem; right: .2rem; bottom: .35rem;
    height: 2px;
    background: var(--brand-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.site-nav .nav-link:hover::after,
.site-nav .nav-link.active::after { transform: scaleX(1); }
.site-nav .nav-link.active { color: var(--brand-teal); }

.nav-cta { margin-left: 1rem; }

/* ---------- hero ---------- */
.hero {
    position: relative;
    background: var(--brand-teal);
    color: #fff;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0 0 0 auto;
    width: 58%;
    background: var(--brand-teal-dark);
    clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
    opacity: .55;
}
.hero .container { position: relative; z-index: 2; }

.hero-slide { padding: 5rem 0 6.5rem; }

.hero h1, .hero .hero-title {
    color: #fff;
    font-size: clamp(2rem, 1.3rem + 2.8vw, 3.25rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
}
.hero .hero-title .highlight { color: var(--brand-gold); }
.hero p { color: rgba(255, 255, 255, .88); max-width: 46ch; margin-bottom: 2rem; }

.hero-figure {
    position: relative;
    border-radius: 999px 999px 24px 24px;
    overflow: hidden;
    box-shadow: var(--shadow-raised);
    aspect-ratio: 4 / 3;
}
.hero-figure img { width: 100%; height: 100%; object-fit: cover; }

.hero-ring {
    position: absolute;
    width: 190px; height: 190px;
    border: 14px solid var(--brand-gold);
    border-radius: 50%;
    left: -110px; top: 22%;
    opacity: .85;
    z-index: 1;
}

.hero-wave { display: block; width: 100%; height: auto; margin-top: -1px; }

.carousel-control-prev, .carousel-control-next { width: 4rem; opacity: 1; }
.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .18);
    background-size: 40%;
    transition: background-color .25s ease;
}
.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon { background-color: var(--brand-gold); }

/* ---------- page banner ---------- */
.page-banner {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-teal-dark);
    overflow: hidden;
}
.page-banner img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .35;
}
.page-banner .banner-inner { position: relative; text-align: center; padding: 3rem 1rem; }
.page-banner h1 { color: #fff; font-size: clamp(1.8rem, 1.2rem + 2vw, 2.6rem); }
.page-banner p { color: rgba(255, 255, 255, .85); margin: .75rem auto 0; }

.breadcrumb-teal {
    display: flex; gap: .5rem; justify-content: center;
    list-style: none; padding: 0; margin: .9rem 0 0;
    font-size: .9rem; color: rgba(255, 255, 255, .75);
}
.breadcrumb-teal a { color: var(--brand-gold); }

/* ---------- about / media blocks ---------- */
.portrait-frame {
    position: relative;
    max-width: 380px;
}
.portrait-frame img {
    position: relative;
    width: 100%;
    display: block;
    border-radius: 200px 200px var(--radius) var(--radius);
}
.portrait-frame::after {
    content: "";
    position: absolute;
    left: 6%; right: 6%; bottom: -14px; top: 14%;
    background: linear-gradient(180deg, var(--brand-teal) 0%, rgba(12, 90, 120, .15) 100%);
    border-radius: 200px 200px var(--radius) var(--radius);
    z-index: -1;
}
.dot-grid {
    width: 92px; height: 78px;
    background-image: radial-gradient(var(--brand-teal) 2px, transparent 2px);
    background-size: 13px 13px;
    opacity: .55;
}

.media-figure img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.rich-text p { margin-bottom: 1.15rem; color: var(--ink-soft); }
.rich-text strong { color: var(--ink); font-weight: 700; }
.rich-text a { font-weight: 600; color: var(--brand-gold-dark); }

.tick-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.tick-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: .65rem;
    color: var(--ink-soft);
}
.tick-list li i {
    position: absolute; left: 0; top: .45rem;
    color: var(--brand-teal);
}

/* ---------- service cards ---------- */
.service-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2.25rem 1.5rem 1.75rem;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: var(--shadow-card);
}
.service-icon {
    width: 76px; height: 76px;
    margin: 0 auto 1.25rem;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--brand-teal);
    color: #fff;
    font-size: 1.6rem;
    position: relative;
}
.service-icon::before {
    content: "";
    position: absolute; inset: -8px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: var(--brand-gold);
    border-right-color: var(--brand-teal-soft);
    transition: transform .5s ease;
}
.service-card:hover .service-icon::before { transform: rotate(180deg); }
.service-card h3 { font-size: 1.05rem; margin-bottom: .5rem; color: var(--ink); }
.service-card p { font-size: .92rem; color: var(--ink-soft); margin: 0 auto; }

/* ---------- CTA band ---------- */
.cta-band {
    background: var(--wash);
    text-align: center;
    padding: 4rem 0;
}
.cta-band p { margin: 0 auto 1.5rem; color: var(--ink-soft); }

/* ---------- forms ---------- */
.form-panel {
    background: var(--wash);
    border-radius: var(--radius);
    padding: 2.5rem;
}
.form-control, .form-select {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: .85rem 1rem;
    background: #fff;
    font-size: .95rem;
}
.form-control:focus, .form-select:focus {
    border-color: var(--brand-teal-soft);
    box-shadow: 0 0 0 .18rem rgba(12, 90, 120, .12);
}
.form-label { font-weight: 600; font-size: .9rem; color: var(--ink); }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; }

/* ---------- contact details ---------- */
.contact-item { display: flex; gap: .85rem; margin-bottom: 1rem; }
.contact-item i { color: var(--brand-teal); margin-top: .35rem; }
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
    display: flex; justify-content: space-between; gap: 1rem;
    padding: .55rem 0;
    border-bottom: 1px dashed var(--line);
    color: var(--ink-soft);
}
.hours-list li span:first-child { font-weight: 600; color: var(--ink); }

.map-embed { display: block; width: 100%; height: 460px; border: 0; filter: saturate(.9); }

/* ---------- fees ---------- */
.fee-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.fee-table th {
    background: var(--brand-teal);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 600;
    padding: .9rem 1.25rem;
}
.fee-table td { padding: 1.05rem 1.25rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.fee-table tr:hover td { background: var(--wash); }
.fee-amount { font-family: var(--font-display); font-weight: 700; color: var(--brand-teal); white-space: nowrap; }

/* ---------- lawyer profile ---------- */
.profile-meta { list-style: none; padding: 0; margin: 1.5rem 0; }
.profile-meta li { display: flex; gap: .75rem; margin-bottom: .6rem; color: var(--ink-soft); }
.profile-meta i { color: var(--brand-teal); margin-top: .35rem; }

/* ---------- footer ---------- */
.site-footer {
    background: var(--brand-teal);
    color: rgba(255, 255, 255, .82);
    padding: 4rem 0 0;
}
.site-footer h4 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
}
.site-footer a { color: rgba(255, 255, 255, .82); }
.site-footer a:hover { color: var(--brand-gold); }
.site-footer img.footer-logo { max-width: 220px; margin-bottom: 1.25rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-hours li { display: flex; gap: .55rem; margin-bottom: .55rem; font-size: .92rem; }
.footer-hours i, .footer-contact i { color: var(--brand-gold); margin-top: .3rem; }
.footer-contact li { display: flex; gap: .55rem; margin-bottom: .75rem; font-size: .92rem; }
.footer-social a {
    width: 34px; height: 34px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, .12);
    margin-right: .4rem;
    transition: background-color .25s ease, transform .25s ease;
}
.footer-social a:hover { background: var(--brand-gold); transform: translateY(-2px); }
.footer-bottom {
    margin-top: 3rem;
    padding: 1.1rem 0;
    background: var(--brand-teal-dark);
    text-align: center;
    font-size: .88rem;
}

/* ---------- utilities ---------- */
.to-top {
    position: fixed; right: 1.25rem; bottom: 1.25rem;
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border: 0; border-radius: 12px;
    background: var(--brand-gold);
    color: #fff;
    opacity: 0; pointer-events: none;
    transform: translateY(12px);
    transition: opacity .3s ease, transform .3s ease;
    z-index: 1040;
}
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

.skip-link {
    position: absolute; left: -999px; top: 0;
    background: var(--brand-gold); color: #fff;
    padding: .75rem 1.25rem; z-index: 2000;
}
.skip-link:focus { left: 0; color: #fff; }

.alert-teal { background: rgba(12, 90, 120, .08); border: 1px solid rgba(12, 90, 120, .2); color: var(--brand-teal-dark); border-radius: var(--radius-sm); }

/* counters */
.stat { text-align: center; }
.stat .stat-value {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 1.4rem + 1.4vw, 2.6rem);
    font-weight: 800;
    color: var(--brand-gold);
    line-height: 1;
}
.stat .stat-label { color: rgba(255, 255, 255, .82); font-size: .92rem; margin-top: .5rem; }

/* ---------- responsive ---------- */
@media (max-width: 991.98px) {
    .hero::before { display: none; }
    .hero-slide { padding: 3.25rem 0 4.5rem; text-align: center; }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero-figure { margin-top: 2.25rem; aspect-ratio: 16 / 10; }
    .hero-ring { display: none; }
    .site-nav .navbar-collapse { padding: 1rem 0; }
    /* arrows would sit on top of the call-to-action on a narrow screen */
    .carousel-control-prev, .carousel-control-next { display: none; }
    .nav-cta { margin: 1rem 0 0; display: inline-block; }
    .portrait-frame { margin: 0 auto 2rem; }
    .section { padding: 3.5rem 0; }
    .form-panel { padding: 1.5rem; }
}

@media (max-width: 575.98px) {
    .topbar { font-size: .8rem; text-align: center; }
    .map-embed { height: 320px; }
    .btn { padding: .7rem 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
    [data-aos] { opacity: 1 !important; transform: none !important; }
}

/* ---------- print ---------- */
@media print {
    .topbar, .site-nav, .site-footer, .to-top, .carousel-control-prev, .carousel-control-next { display: none !important; }
    body { color: #000; }
}

/* =========================================================
   Get a quote — step-by-step flow
   ========================================================= */
.quote-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #fff;
}

.quote-header {
    border-bottom: 1px solid var(--line);
    padding: .9rem 0 0;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 20;
}
.quote-exit {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--brand-teal);
    text-decoration: underline;
}

.quote-progress { display: flex; gap: .45rem; padding: .9rem 0 .75rem; }
.quote-progress span {
    flex: 1 1 0;
    height: 6px;
    border-radius: 999px;
    background: var(--line);
    transition: background-color .35s ease;
}
.quote-progress span.is-done { background: var(--brand-teal); }

.quote-main { flex: 1 1 auto; padding: 3rem 0 7rem; }

.quote-title {
    font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.25rem);
    text-align: center;
    max-width: 20ch;
    margin: 0 auto 1rem;
}
.quote-note {
    text-align: center;
    color: var(--ink-soft);
    max-width: 56ch;
    margin: 0 auto 2rem;
}

.quote-cards {
    max-width: 720px;
    margin: 2.25rem auto 0;
    display: grid;
    gap: 1rem;
}
.quote-cards form { display: grid; gap: 1rem; }

.choice-card {
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.6rem 3.5rem 1.5rem 1.6rem;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
    animation: cardIn .45s ease both;
}
.choice-card:hover:not(.is-disabled),
.choice-card:focus-visible {
    border-color: var(--brand-teal);
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
}
.choice-card:nth-child(2) { animation-delay: .07s; }
.choice-card:nth-child(3) { animation-delay: .14s; }
@keyframes cardIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.choice-icon {
    display: grid; place-items: center;
    width: 58px; height: 58px;
    border-radius: 16px;
    background: rgba(217, 160, 60, .16);
    color: var(--brand-gold-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.choice-arrow { position: absolute; top: 1.6rem; right: 1.6rem; color: var(--ink); font-size: 1.15rem; }
.choice-title { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.choice-text { display: block; color: var(--ink-soft); margin-top: .3rem; }
.choice-card.is-disabled { opacity: .55; }
.choice-flag {
    display: inline-block;
    margin-top: .85rem;
    padding: .2rem .7rem;
    border-radius: 999px;
    background: var(--wash);
    color: var(--ink-soft);
    font-size: .78rem;
}

.quote-form { max-width: 560px; margin: 2rem auto 0; }
.quote-form-wide { max-width: 760px; }
.quote-footnote { text-align: center; color: var(--ink-soft); margin-top: 2rem; font-size: .92rem; }

.upload-zone {
    display: grid;
    place-items: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    border: 2px dashed var(--line);
    border-radius: var(--radius);
    cursor: pointer;
    transition: border-color .25s ease, background-color .25s ease;
}
.upload-zone:hover, .upload-zone.is-dragging { border-color: var(--brand-teal); background: var(--wash); }
.upload-zone i { font-size: 2.4rem; color: var(--brand-gold); }
.upload-hint { font-family: var(--font-display); font-weight: 600; margin-top: .75rem; }

.upload-done {
    display: flex; align-items: center; gap: .9rem;
    padding: 1rem 1.15rem;
    border-radius: var(--radius-sm);
    background: rgba(12, 90, 120, .07);
    margin-bottom: 1.25rem;
}
.upload-done i { font-size: 1.5rem; color: var(--brand-teal); }

.contact-choice { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.contact-option input { position: absolute; opacity: 0; }
.contact-option span {
    display: grid; place-items: center; gap: .5rem;
    padding: 1.1rem .5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: border-color .2s ease, background-color .2s ease;
}
.contact-option span i { font-size: 1.3rem; color: var(--brand-teal); }
.contact-option input:checked + span { border-color: var(--brand-teal); background: rgba(12, 90, 120, .07); }
.contact-option input:focus-visible + span { outline: 3px solid var(--brand-gold); outline-offset: 2px; }

.co-party { margin-bottom: .6rem; }
.btn-add-party {
    width: 100%;
    border: 1px dashed var(--line);
    background: var(--wash);
    color: var(--ink);
    border-radius: var(--radius-sm);
    padding: .85rem;
    font-weight: 600;
}
.btn-add-party:hover { border-color: var(--brand-teal); color: var(--brand-teal); }

.quote-footer {
    position: sticky;
    bottom: 0;
    background: #fff;
    border-top: 1px solid var(--line);
    padding: .85rem 0;
    z-index: 20;
}
.quote-back {
    display: grid; place-items: center;
    width: 52px; height: 46px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--ink);
}
.quote-back:hover { border-color: var(--brand-teal); color: var(--brand-teal); }
.quote-continue { min-width: 170px; margin-left: auto; }

.quote-done-icon {
    display: grid; place-items: center;
    width: 82px; height: 82px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(12, 90, 120, .1);
    color: var(--brand-teal);
    font-size: 2.4rem;
    animation: popIn .5s cubic-bezier(.2, .9, .3, 1.4) both;
}
@keyframes popIn { from { transform: scale(.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.reference-chip {
    display: inline-block;
    margin-top: 1rem;
    padding: .45rem 1.1rem;
    border-radius: 999px;
    background: var(--wash);
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--brand-teal);
}

@media (max-width: 575.98px) {
    .quote-main { padding: 2rem 0 6rem; }
    .contact-choice { grid-template-columns: 1fr; }
    .quote-continue { min-width: 130px; }
}

/* Header actions and the home-page quote band */
.nav-actions { display: flex; align-items: center; gap: .6rem; margin-left: 1rem; }
.btn-outline-brand {
    border: 1px solid var(--brand-teal);
    color: var(--brand-teal);
    background: transparent;
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
    background: var(--brand-teal);
    color: #fff;
    transform: translateY(-2px);
}

.quote-band {
    background: linear-gradient(120deg, var(--brand-teal) 0%, var(--brand-teal-dark) 100%);
    color: rgba(255, 255, 255, .9);
    padding: 4rem 0;
}
.quote-band .section-title { color: #fff; }
.quote-band p { color: rgba(255, 255, 255, .88); }
.quote-steps { margin: 0; padding-left: 1.2rem; }
.quote-steps li { margin-bottom: .5rem; color: rgba(255, 255, 255, .88); }
.quote-band-note { font-size: .88rem; margin-top: .85rem; }

@media (max-width: 991.98px) {
    .nav-actions { margin: 1rem 0 0; flex-wrap: wrap; }
    .quote-band { padding: 3rem 0; text-align: center; }
    .quote-steps { display: inline-block; text-align: left; }
}
