/* =========================================================
   MARHABA MONEY TRANSFER PAGE
========================================================= */

:root {
    --remittance-navy: #071f31;
    --remittance-navy-light: #103952;
    --remittance-blue: #1453a6;
    --remittance-blue-light: #2f78da;
    --remittance-gold: #ffbd26;
    --remittance-gold-light: #ffe49b;
    --remittance-green: #087c5c;
    --remittance-green-dark: #04503d;
    --remittance-white: #ffffff;
    --remittance-surface: #f4f8f7;
    --remittance-border: #dce8e4;
    --remittance-text: #10251f;
    --remittance-muted: #667770;
    --remittance-danger: #b42318;
    --remittance-shadow: 0 24px 70px rgba(6, 47, 36, 0.12);
}

html {
    scroll-behavior: smooth;
}

.remittance-page {
    background: var(--remittance-surface);
    color: var(--remittance-text);
    overflow: hidden;
}

.remittance-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* =========================================================
   HERO
========================================================= */

.remittance-hero {
    position: relative;
    min-height: 700px;
    padding: 100px 0 90px;
    color: var(--remittance-white);
    background:
        radial-gradient(circle at 76% 25%, rgba(41, 123, 201, 0.35), transparent 28%),
        radial-gradient(circle at 15% 90%, rgba(255, 189, 38, 0.18), transparent 25%),
        linear-gradient(130deg, #031d29 0%, #073f4b 48%, #0d3767 100%);
    isolation: isolate;
}

.remittance-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.17;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to right, #000, transparent 85%);
}

.remittance-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
}

.remittance-orb-one {
    top: -160px;
    right: -130px;
    width: 470px;
    height: 470px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 0 0 65px rgba(255, 255, 255, 0.025),
        0 0 0 135px rgba(255, 255, 255, 0.018);
}

.remittance-orb-two {
    bottom: -230px;
    left: 25%;
    width: 410px;
    height: 410px;
    background: rgba(255, 189, 38, 0.05);
}

.remittance-hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 80px;
}

.remittance-hero-content {
    position: relative;
    z-index: 2;
}

.remittance-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.19);
    border-radius: 100px;
    color: #e5f6f1;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.eyebrow-icon {
    color: var(--remittance-gold);
}

.remittance-hero h1 {
    max-width: 680px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(54px, 6vw, 88px);
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: -4px;
}

.remittance-hero h1 span {
    display: block;
    margin-top: 10px;
    color: var(--remittance-gold);
}

.remittance-hero-description {
    max-width: 620px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.75;
}

.remittance-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.remittance-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 24px;
    border: 0;
    border-radius: 13px;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.remittance-button:hover {
    transform: translateY(-3px);
}

.remittance-button-primary {
    color: #08251c;
    background: var(--remittance-gold);
    box-shadow: 0 15px 30px rgba(255, 189, 38, 0.2);
}

.remittance-button-primary:hover {
    color: #08251c;
    background: #ffc947;
    box-shadow: 0 18px 35px rgba(255, 189, 38, 0.3);
}

.remittance-button-outline {
    color: var(--remittance-white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.07);
}

.remittance-button-outline:hover {
    color: var(--remittance-white);
    background: rgba(255, 255, 255, 0.13);
}

.remittance-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 35px;
}

.remittance-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.73);
    font-size: 12px;
    font-weight: 700;
}

.trust-icon {
    display: inline-grid;
    width: 19px;
    height: 19px;
    place-items: center;
    border-radius: 50%;
    color: #082b20;
    background: #61ddb4;
    font-size: 11px;
}

/* =========================================================
   HERO VISUAL CARD
========================================================= */

.remittance-hero-card {
    position: relative;
    min-height: 490px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 34px;
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.04));
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(18px);
}

.hero-card-glow {
    position: absolute;
    right: -70px;
    bottom: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 189, 38, 0.16);
    filter: blur(55px);
}

.hero-card-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ria-demo-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ria-demo-symbol {
    display: grid;
    width: 49px;
    height: 49px;
    place-items: center;
    border-radius: 15px;
    color: #15274e;
    background: var(--remittance-gold);
    font-family: Georgia, serif;
    font-size: 25px;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(255, 189, 38, 0.25);
}

.ria-demo-logo strong,
.ria-demo-logo small {
    display: block;
}

.ria-demo-logo strong {
    font-size: 15px;
}

.ria-demo-logo small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
}

.demo-badge {
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.08);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}

.world-visual {
    position: relative;
    display: grid;
    width: 290px;
    height: 290px;
    margin: 35px auto 25px;
    place-items: center;
}

.world-ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    animation: worldSpin 20s linear infinite;
}

.world-ring-one {
    inset: 14px;
}

.world-ring-two {
    inset: 52px;
    border-style: dashed;
    animation-direction: reverse;
    animation-duration: 13s;
}

.world-core {
    position: relative;
    z-index: 2;
    display: grid;
    width: 130px;
    height: 130px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 25%, #42b9b2, #0f4669 70%);
    box-shadow:
        0 0 0 16px rgba(255, 255, 255, 0.035),
        0 22px 50px rgba(0, 0, 0, 0.25);
    font-size: 62px;
    animation: worldFloat 4s ease-in-out infinite;
}

.country-bubble {
    position: absolute;
    z-index: 3;
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border: 3px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 13px 28px rgba(0, 0, 0, 0.22);
    font-size: 21px;
    animation: bubbleFloat 3.5s ease-in-out infinite;
}

.country-bubble-one {
    top: 19px;
    left: 55px;
}

.country-bubble-two {
    top: 51px;
    right: 16px;
    animation-delay: -0.7s;
}

.country-bubble-three {
    right: 30px;
    bottom: 32px;
    animation-delay: -1.4s;
}

.country-bubble-four {
    bottom: 17px;
    left: 54px;
    animation-delay: -2.1s;
}

.country-bubble-five {
    top: 119px;
    left: 0;
    animation-delay: -2.8s;
}

.hero-card-statistics {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 17px;
    background: rgba(0, 0, 0, 0.12);
}

.hero-card-statistics div {
    padding: 17px 12px;
    text-align: center;
}

.hero-card-statistics div + div {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-card-statistics strong,
.hero-card-statistics span {
    display: block;
}

.hero-card-statistics strong {
    color: var(--remittance-gold);
    font-size: 14px;
}

.hero-card-statistics span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 9px;
}

/* =========================================================
   NOTICE
========================================================= */

.remittance-notice-section {
    position: relative;
    z-index: 4;
    margin-top: -34px;
}

.remittance-notice {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px 28px;
    border: 1px solid #efdca6;
    border-radius: 20px;
    background: #fff9e8;
    box-shadow: 0 17px 45px rgba(76, 59, 15, 0.1);
}

.notice-icon {
    flex: 0 0 34px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #bc8010;
    font-family: Georgia, serif;
    font-size: 18px;
    font-weight: 900;
}

.remittance-notice strong {
    color: #6d4908;
    font-size: 14px;
}

.remittance-notice p {
    margin: 6px 0 0;
    color: #765f30;
    font-size: 12px;
    line-height: 1.65;
}

/* =========================================================
   COMMON SECTIONS
========================================================= */

.remittance-section {
    padding: 105px 0;
}

.remittance-section-heading {
    max-width: 680px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--remittance-green);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
}

.section-kicker-light {
    color: #83e5c5;
}

.remittance-section-heading h2,
.enquiry-information h2,
.final-cta-panel h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.04;
    letter-spacing: -2px;
}

.remittance-section-heading p {
    margin: 18px auto 0;
    color: var(--remittance-muted);
    font-size: 15px;
    line-height: 1.75;
}

/* =========================================================
   CONVERTER
========================================================= */

.converter-section {
    background:
        radial-gradient(circle at 10% 20%, rgba(28, 147, 109, 0.1), transparent 24%),
        #f4f8f7;
}

.converter-layout {
    display: grid;
    grid-template-columns: 1fr 0.88fr;
    gap: 25px;
    align-items: stretch;
}

.converter-panel,
.quote-result-panel {
    border: 1px solid var(--remittance-border);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--remittance-shadow);
}

.converter-panel {
    padding: 38px;
}

.remittance-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.form-group-full {
    grid-column: 1 / -1;
}

.remittance-form-group label {
    display: block;
    margin-bottom: 9px;
    color: #18372d;
    font-size: 12px;
    font-weight: 800;
}

.remittance-form-group input:not([type="checkbox"]),
.remittance-form-group select,
.remittance-form-group textarea {
    width: 100%;
    min-height: 51px;
    padding: 0 15px;
    border: 1px solid #d5e2de;
    border-radius: 12px;
    outline: none;
    color: #173329;
    background: #f9fbfa;
    font: inherit;
    font-size: 13px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.remittance-form-group textarea {
    min-height: 120px;
    padding-top: 14px;
    resize: vertical;
}

.remittance-form-group input:focus,
.remittance-form-group select:focus,
.remittance-form-group textarea:focus {
    border-color: var(--remittance-green);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(8, 124, 92, 0.1);
}

.money-input-wrapper {
    position: relative;
}

.money-input-wrapper input {
    padding-left: 68px !important;
}

.currency-prefix {
    position: absolute;
    top: 50%;
    left: 13px;
    z-index: 2;
    padding: 6px 8px;
    border-radius: 7px;
    color: #fff;
    background: var(--remittance-green);
    font-size: 10px;
    font-weight: 900;
    transform: translateY(-50%);
}

.converter-button {
    width: 100%;
    margin-top: 26px;
}

.button-loading-text {
    display: none;
}

.converter-button.is-loading .button-normal-text {
    display: none;
}

.converter-button.is-loading .button-loading-text {
    display: inline;
}

.converter-button.is-loading {
    cursor: wait;
    opacity: 0.75;
}

.field-error {
    display: none;
    margin-top: 7px;
    color: var(--remittance-danger);
    font-size: 11px;
    font-weight: 700;
}

.field-error.visible {
    display: block;
}

.quote-result-panel {
    position: relative;
    display: flex;
    min-height: 430px;
    padding: 34px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 95% 5%, rgba(255, 189, 38, 0.22), transparent 32%),
        linear-gradient(145deg, #082f40, #0c5d5e);
}

.quote-result-panel::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -95px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    box-shadow:
        0 0 0 45px rgba(255, 255, 255, 0.025),
        0 0 0 90px rgba(255, 255, 255, 0.018);
}

.quote-placeholder {
    position: relative;
    z-index: 2;
    max-width: 330px;
    margin: auto;
    text-align: center;
}

.quote-placeholder-icon {
    display: grid;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.19);
    border-radius: 22px;
    color: var(--remittance-gold);
    background: rgba(255, 255, 255, 0.08);
    font-size: 29px;
}

.quote-placeholder h3 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 27px;
}

.quote-placeholder p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    line-height: 1.7;
}

.quote-result-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.quote-result-header,
.quote-country {
    display: flex;
    align-items: center;
}

.quote-result-header {
    justify-content: space-between;
    gap: 15px;
}

.quote-country {
    gap: 12px;
}

.quote-country img {
    width: 48px;
    height: 34px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    object-fit: cover;
}

.quote-country small,
.quote-country strong {
    display: block;
}

.quote-country small {
    color: rgba(255, 255, 255, 0.55);
    font-size: 9px;
    text-transform: uppercase;
}

.quote-country strong {
    margin-top: 4px;
    font-size: 14px;
}

.quote-status-badge {
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 100px;
    color: #ffe6a8;
    background: rgba(255, 189, 38, 0.12);
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}

.quote-main-amount {
    padding: 31px 0 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.quote-main-amount > span {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
}

.quote-main-amount strong {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 8px;
    color: var(--remittance-gold);
    font-family: Georgia, serif;
    font-size: 45px;
}

.quote-main-amount small {
    font-family: Arial, sans-serif;
    font-size: 13px;
}

.quote-breakdown {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
    margin-top: 22px;
}

.quote-breakdown div {
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.055);
}

.quote-breakdown span,
.quote-breakdown strong {
    display: block;
}

.quote-breakdown span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 9px;
}

.quote-breakdown strong {
    margin-top: 5px;
    font-size: 13px;
}

.quote-total-row {
    border-color: rgba(255, 189, 38, 0.3) !important;
}

.quote-message {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
    line-height: 1.6;
}

.official-rate-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--remittance-gold);
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
}

.official-rate-link:hover {
    color: #fff;
}

.quote-error {
    position: relative;
    z-index: 4;
    width: 100%;
    margin: auto;
    padding: 18px;
    border: 1px solid rgba(255, 184, 184, 0.28);
    border-radius: 13px;
    color: #ffe2e2;
    background: rgba(151, 28, 28, 0.22);
    font-size: 12px;
    line-height: 1.6;
}

/* =========================================================
   PROCESS
========================================================= */

.process-section {
    background: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.process-card {
    position: relative;
    min-height: 270px;
    padding: 31px;
    overflow: hidden;
    border: 1px solid var(--remittance-border);
    border-radius: 23px;
    background: #f9fbfa;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(7, 62, 47, 0.11);
}

.featured-process-card {
    color: #fff;
    border-color: transparent;
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 189, 38, 0.25), transparent 34%),
        linear-gradient(145deg, #064d3b, #087c5c);
}

.process-number {
    position: absolute;
    top: 18px;
    right: 21px;
    color: rgba(8, 124, 92, 0.1);
    font-family: Georgia, serif;
    font-size: 50px;
    font-weight: 900;
}

.featured-process-card .process-number {
    color: rgba(255, 255, 255, 0.09);
}

.process-icon {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 26px;
    place-items: center;
    border-radius: 16px;
    color: #fff;
    background: var(--remittance-green);
    font-size: 23px;
}

.featured-process-card .process-icon {
    color: #123023;
    background: var(--remittance-gold);
}

.process-card h3 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 24px;
}

.process-card p {
    margin: 13px 0 0;
    color: var(--remittance-muted);
    font-size: 13px;
    line-height: 1.7;
}

.featured-process-card p {
    color: rgba(255, 255, 255, 0.68);
}

/* =========================================================
   ENQUIRY
========================================================= */

.enquiry-section {
    color: #fff;
    background:
        radial-gradient(circle at 15% 90%, rgba(255, 189, 38, 0.13), transparent 28%),
        linear-gradient(135deg, #042a29, #073f48 60%, #0b315a);
}

.enquiry-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 75px;
    align-items: center;
}

.enquiry-information h2 {
    max-width: 470px;
}

.enquiry-information > p {
    margin: 21px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.75;
}

.enquiry-benefits {
    display: grid;
    gap: 20px;
    margin-top: 34px;
}

.enquiry-benefits > div {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.enquiry-benefits > div > span {
    display: grid;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    color: #123024;
    background: var(--remittance-gold);
    font-size: 12px;
    font-weight: 900;
}

.enquiry-benefits strong,
.enquiry-benefits small {
    display: block;
}

.enquiry-benefits strong {
    font-size: 13px;
}

.enquiry-benefits small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    line-height: 1.5;
}

.enquiry-support-card {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 34px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
}

.support-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: #21a66f;
    font-size: 20px;
}

.enquiry-support-card small,
.enquiry-support-card strong {
    display: block;
}

.enquiry-support-card small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 9px;
    text-transform: uppercase;
}

.enquiry-support-card strong {
    margin-top: 4px;
    font-size: 13px;
}

.enquiry-form-panel {
    padding: 37px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    color: var(--remittance-text);
    background: #fff;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.25);
}

.enquiry-form-heading {
    margin-bottom: 27px;
}

.enquiry-form-heading span {
    color: var(--remittance-green);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.enquiry-form-heading h3 {
    margin: 7px 0 0;
    font-family: Georgia, serif;
    font-size: 31px;
}

.enquiry-form-heading p {
    margin: 7px 0 0;
    color: var(--remittance-muted);
    font-size: 10px;
}

.remittance-checkbox-group {
    padding: 13px 15px;
    border: 1px solid #dce8e4;
    border-radius: 12px;
    background: #f8fbfa;
}

.remittance-checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    cursor: pointer;
    color: #29483e;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.5;
}

.remittance-checkbox-group input {
    width: 17px;
    height: 17px;
    margin-top: 1px;
    accent-color: var(--remittance-green);
}

.form-help-text {
    display: block;
    margin-top: 6px;
    color: var(--remittance-muted);
    font-size: 9px;
}

.form-non-field-errors {
    margin-bottom: 20px;
    padding: 13px 15px;
    border: 1px solid #f1b8b3;
    border-radius: 11px;
    color: #922018;
    background: #fff0ef;
    font-size: 11px;
}

.form-non-field-errors p {
    margin: 0;
}

.form-security-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 22px;
    padding: 13px 15px;
    border: 1px solid #dfd3ad;
    border-radius: 11px;
    background: #fff9e9;
}

.form-security-note p {
    margin: 0;
    color: #725d29;
    font-size: 9px;
    line-height: 1.6;
}

.enquiry-submit-button {
    width: 100%;
    margin-top: 22px;
}

/* =========================================================
   FINAL CTA
========================================================= */

.remittance-final-cta {
    padding: 85px 0;
    background: #fff;
}

.final-cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 48px;
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 15%, rgba(255, 189, 38, 0.28), transparent 30%),
        linear-gradient(135deg, #0c4482, #092b51);
    box-shadow: 0 25px 65px rgba(7, 43, 79, 0.2);
}

.final-cta-panel > div {
    max-width: 700px;
}

.final-cta-panel > div > span {
    color: var(--remittance-gold);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.6px;
}

.final-cta-panel h2 {
    margin-top: 9px;
    font-size: clamp(30px, 4vw, 47px);
}

.final-cta-panel p {
    margin: 13px 0 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 12px;
    line-height: 1.65;
}

.remittance-button-light {
    flex: 0 0 auto;
    color: #0d3260;
    background: #fff;
}

.remittance-button-light:hover {
    color: #0d3260;
    background: var(--remittance-gold);
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes worldSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes worldFloat {
    0%,
    100% {
        transform: translateY(0);
    }

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

@keyframes bubbleFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-9px) rotate(5deg);
    }
}

/* =========================================================
   RESPONSIVE DESIGN
========================================================= */

@media (max-width: 1050px) {
    .remittance-hero-grid,
    .enquiry-layout {
        gap: 45px;
    }

    .remittance-hero h1 {
        font-size: 63px;
    }
}

@media (max-width: 900px) {
    .remittance-hero {
        padding-top: 75px;
    }

    .remittance-hero-grid,
    .converter-layout,
    .enquiry-layout {
        grid-template-columns: 1fr;
    }

    .remittance-hero-content {
        text-align: center;
    }

    .remittance-hero-description {
        margin-right: auto;
        margin-left: auto;
    }

    .remittance-hero-actions,
    .remittance-trust-row {
        justify-content: center;
    }

    .remittance-hero-card {
        width: min(560px, 100%);
        margin: 0 auto;
    }

    .converter-layout {
        max-width: 700px;
        margin: 0 auto;
    }

    .process-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin: 0 auto;
    }

    .process-card {
        min-height: auto;
    }

    .enquiry-information {
        text-align: center;
    }

    .enquiry-information h2 {
        margin-right: auto;
        margin-left: auto;
    }

    .enquiry-benefits {
        max-width: 520px;
        margin-right: auto;
        margin-left: auto;
        text-align: left;
    }

    .enquiry-support-card {
        max-width: 520px;
        margin-right: auto;
        margin-left: auto;
        text-align: left;
    }

    .enquiry-form-panel {
        max-width: 720px;
        margin: 0 auto;
    }
}

@media (max-width: 650px) {
    .remittance-container {
        width: min(100% - 24px, 1180px);
    }

    .remittance-hero {
        min-height: auto;
        padding: 65px 0 70px;
    }

    .remittance-hero h1 {
        font-size: 46px;
        letter-spacing: -2.5px;
    }

    .remittance-hero-description {
        font-size: 14px;
    }

    .remittance-hero-actions {
        flex-direction: column;
    }

    .remittance-hero-actions .remittance-button {
        width: 100%;
    }

    .remittance-trust-row {
        align-items: center;
        flex-direction: column;
        gap: 11px;
    }

    .remittance-hero-card {
        min-height: 430px;
        padding: 22px;
        border-radius: 24px;
    }

    .world-visual {
        width: 245px;
        height: 245px;
    }

    .world-core {
        width: 110px;
        height: 110px;
        font-size: 51px;
    }

    .country-bubble {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .hero-card-statistics span {
        font-size: 8px;
    }

    .remittance-notice-section {
        margin-top: 15px;
    }

    .remittance-notice {
        padding: 20px;
    }

    .remittance-section {
        padding: 75px 0;
    }

    .remittance-section-heading {
        margin-bottom: 35px;
    }

    .remittance-section-heading h2,
    .enquiry-information h2 {
        font-size: 38px;
        letter-spacing: -1.5px;
    }

    .converter-panel,
    .quote-result-panel,
    .enquiry-form-panel {
        padding: 23px;
        border-radius: 21px;
    }

    .remittance-form .form-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .form-group-full {
        grid-column: auto;
    }

    .quote-breakdown {
        grid-template-columns: 1fr;
    }

    .quote-main-amount strong {
        font-size: 35px;
    }

    .final-cta-panel {
        align-items: flex-start;
        flex-direction: column;
        padding: 31px 25px;
    }

    .final-cta-panel .remittance-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .world-ring,
    .world-core,
    .country-bubble {
        animation: none;
    }

    .remittance-button,
    .process-card {
        transition: none;
    }
}



/* =========================================================
   REMITTANCE ENQUIRY SUCCESS PAGE
========================================================= */

.remittance-success-page {
    min-height: 100vh;
    color: var(--remittance-text);
    background:
        radial-gradient(circle at 8% 15%, rgba(16, 145, 106, 0.12), transparent 25%),
        radial-gradient(circle at 92% 75%, rgba(255, 189, 38, 0.14), transparent 24%),
        #f3f8f6;
}

.success-hero {
    position: relative;
    min-height: 100vh;
    padding: 90px 0;
    overflow: hidden;
}

.success-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image:
        linear-gradient(rgba(7, 73, 55, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 73, 55, 0.04) 1px, transparent 1px);
    background-size: 55px 55px;
    pointer-events: none;
}

.success-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.success-decoration-one {
    top: -160px;
    right: -120px;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(8, 124, 92, 0.1);
    box-shadow:
        0 0 0 60px rgba(8, 124, 92, 0.025),
        0 0 0 120px rgba(8, 124, 92, 0.018);
}

.success-decoration-two {
    bottom: -220px;
    left: -170px;
    width: 500px;
    height: 500px;
    background: rgba(255, 189, 38, 0.08);
}

.success-card {
    position: relative;
    z-index: 2;
    width: min(920px, 100%);
    margin: 0 auto;
    padding: 55px;
    border: 1px solid rgba(8, 124, 92, 0.12);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 35px 100px rgba(4, 57, 43, 0.14);
    text-align: center;
    backdrop-filter: blur(15px);
}

.success-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.success-icon-ring {
    position: relative;
    display: grid;
    width: 92px;
    height: 92px;
    place-items: center;
    border: 1px solid rgba(8, 124, 92, 0.18);
    border-radius: 50%;
    background: rgba(8, 124, 92, 0.08);
    animation: successOuterPulse 2.5s ease-in-out infinite;
}

.success-icon-ring::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background:
        linear-gradient(145deg, #10a97b, #057052);
    box-shadow: 0 14px 35px rgba(8, 124, 92, 0.28);
}

.success-icon-ring span {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 34px;
    font-weight: 900;
    animation: successCheckAppear 0.6s ease both;
}

.success-eyebrow {
    display: inline-block;
    color: var(--remittance-green);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.success-card > h1 {
    margin: 11px 0 0;
    color: #092d24;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(39px, 5vw, 61px);
    line-height: 1.05;
    letter-spacing: -2.5px;
}

.success-introduction {
    max-width: 640px;
    margin: 18px auto 0;
    color: var(--remittance-muted);
    font-size: 14px;
    line-height: 1.75;
}

.success-reference-card {
    max-width: 590px;
    margin: 35px auto 0;
    padding: 24px;
    border: 1px solid rgba(255, 189, 38, 0.5);
    border-radius: 18px;
    background:
        linear-gradient(135deg, #fff9e7, #fffdf7);
}

.success-reference-card > span {
    display: block;
    color: #856419;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.reference-copy-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-top: 8px;
}

.reference-copy-row strong {
    color: #6d4c05;
    font-family: Georgia, serif;
    font-size: clamp(22px, 4vw, 32px);
    letter-spacing: 1px;
}

.copy-reference-button {
    padding: 7px 12px;
    border: 1px solid #e1c675;
    border-radius: 8px;
    cursor: pointer;
    color: #745307;
    background: #fff;
    font-family: inherit;
    font-size: 10px;
    font-weight: 800;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.copy-reference-button:hover {
    color: #fff;
    background: #9d7211;
    transform: translateY(-2px);
}

.success-reference-card small {
    display: block;
    margin-top: 8px;
    color: #957a42;
    font-size: 9px;
}

.success-status-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    margin-top: 22px;
}

.success-status-label {
    color: var(--remittance-muted);
    font-size: 11px;
    font-weight: 700;
}

.success-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border-radius: 100px;
    color: #07543e;
    background: #dff7ee;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.success-status-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0e966c;
    box-shadow: 0 0 0 4px rgba(14, 150, 108, 0.12);
}

.success-status-badge.status-cancelled {
    color: #8c271f;
    background: #fde9e7;
}

.success-status-badge.status-cancelled::before {
    background: #c64237;
}

.success-status-badge.status-completed {
    color: #114f2b;
    background: #dff5e7;
}

.success-details-section,
.success-progress-section {
    margin-top: 48px;
    text-align: left;
}

.success-section-heading {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--remittance-border);
}

.success-section-heading > span {
    color: var(--remittance-green);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.success-section-heading h2 {
    margin: 6px 0 0;
    color: #12352b;
    font-family: Georgia, serif;
    font-size: 27px;
}

.success-details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.success-detail-item {
    min-width: 0;
    padding: 17px;
    border: 1px solid var(--remittance-border);
    border-radius: 13px;
    background: #f8fbfa;
}

.success-detail-item span,
.success-detail-item strong {
    display: block;
}

.success-detail-item span {
    color: var(--remittance-muted);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.success-detail-item strong {
    margin-top: 6px;
    overflow-wrap: anywhere;
    color: #173a30;
    font-size: 13px;
}

.highlighted-detail {
    border-color: rgba(255, 189, 38, 0.55);
    background: #fff9e9;
}

.highlighted-detail strong {
    color: #7b5707;
    font-size: 16px;
}

.success-progress {
    display: grid;
    grid-template-columns: 1fr 55px 1fr 55px 1fr;
    align-items: center;
    margin-top: 27px;
}

.progress-step {
    text-align: center;
}

.progress-step-icon {
    display: grid;
    width: 44px;
    height: 44px;
    margin: 0 auto 12px;
    place-items: center;
    border: 1px solid #cad9d4;
    border-radius: 50%;
    color: #789087;
    background: #f7faf9;
    font-size: 12px;
    font-weight: 900;
}

.progress-step.active .progress-step-icon {
    color: #fff;
    border-color: var(--remittance-green);
    background: var(--remittance-green);
    box-shadow: 0 10px 25px rgba(8, 124, 92, 0.22);
}

.progress-step strong,
.progress-step small {
    display: block;
}

.progress-step strong {
    color: #173a30;
    font-size: 11px;
}

.progress-step small {
    margin-top: 5px;
    color: var(--remittance-muted);
    font-size: 9px;
    line-height: 1.5;
}

.progress-line {
    height: 1px;
    margin-bottom: 46px;
    background:
        linear-gradient(
            to right,
            var(--remittance-green),
            #d4e1dd
        );
}

.success-safety-notice {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 42px;
    padding: 20px;
    border: 1px solid #ecdca8;
    border-radius: 15px;
    background: #fffaf0;
    text-align: left;
}

.success-safety-icon {
    flex: 0 0 31px;
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #a67411;
    font-family: Georgia, serif;
    font-weight: 900;
}

.success-safety-notice strong {
    color: #6c4c0b;
    font-size: 11px;
}

.success-safety-notice p {
    margin: 5px 0 0;
    color: #806a38;
    font-size: 10px;
    line-height: 1.65;
}

.success-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.success-secondary-button,
.success-official-link {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 20px;
    border-radius: 13px;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.success-secondary-button {
    color: #174537;
    border: 1px solid #ceddd8;
    background: #fff;
}

.success-secondary-button:hover {
    color: #fff;
    border-color: var(--remittance-green);
    background: var(--remittance-green);
    transform: translateY(-2px);
}

.success-official-link {
    color: #164b91;
    border: 1px solid #c9d9ee;
    background: #f1f6fc;
}

.success-official-link:hover {
    color: #fff;
    border-color: var(--remittance-blue);
    background: var(--remittance-blue);
    transform: translateY(-2px);
}

.success-footer-note {
    max-width: 620px;
    margin: 25px auto 0;
    color: #84958f;
    font-size: 9px;
    line-height: 1.6;
}

/* =========================================================
   SUCCESS PAGE ANIMATIONS
========================================================= */

@keyframes successOuterPulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(8, 124, 92, 0.12);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(8, 124, 92, 0);
    }
}

@keyframes successCheckAppear {
    from {
        opacity: 0;
        transform: scale(0.3) rotate(-25deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

/* =========================================================
   SUCCESS PAGE RESPONSIVE
========================================================= */

@media (max-width: 760px) {
    .success-hero {
        padding: 50px 0;
    }

    .success-card {
        padding: 35px 22px;
        border-radius: 25px;
    }

    .success-card > h1 {
        font-size: 40px;
        letter-spacing: -1.7px;
    }

    .success-details-grid {
        grid-template-columns: 1fr;
    }

    .success-progress {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .progress-line {
        width: 1px;
        height: 25px;
        margin: 0 auto;
        background:
            linear-gradient(
                to bottom,
                var(--remittance-green),
                #d4e1dd
            );
    }

    .success-actions {
        flex-direction: column;
    }

    .success-actions a {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .success-icon-ring {
        width: 78px;
        height: 78px;
    }

    .success-icon-ring span {
        font-size: 28px;
    }

    .reference-copy-row {
        flex-direction: column;
    }

    .success-status-row {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .success-icon-ring,
    .success-icon-ring span {
        animation: none;
    }
}






/* =========================================================
   CUSTOMER REMITTANCE ENQUIRY LIST
========================================================= */

.customer-enquiries-page {
    min-height: 100vh;
    color: var(--remittance-text);
    background:
        radial-gradient(circle at 5% 35%, rgba(8, 124, 92, 0.08), transparent 22%),
        #f3f8f6;
}

.customer-enquiries-hero {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 85% 10%, rgba(255, 189, 38, 0.22), transparent 26%),
        linear-gradient(135deg, #042b2b, #075f52 58%, #0b3c64);
}

.customer-enquiries-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
    background-size: 55px 55px;
    pointer-events: none;
}

.customer-enquiries-heading {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
}

.customer-enquiries-heading > div {
    max-width: 690px;
}

.customer-enquiries-heading h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 6vw, 70px);
    line-height: 1;
    letter-spacing: -3px;
}

.customer-enquiries-heading p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.67);
    font-size: 14px;
    line-height: 1.7;
}

.customer-enquiries-content {
    padding: 75px 0 100px;
}

.customer-enquiry-summary {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 18px;
    margin-bottom: 25px;
}

.summary-stat,
.summary-message {
    border: 1px solid var(--remittance-border);
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(5, 64, 47, 0.07);
}

.summary-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 19px 22px;
}

.summary-stat span {
    color: var(--remittance-muted);
    font-size: 11px;
    font-weight: 700;
}

.summary-stat strong {
    color: var(--remittance-green);
    font-family: Georgia, serif;
    font-size: 28px;
}

.summary-message {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 18px 21px;
}

.summary-message > span {
    display: grid;
    flex: 0 0 29px;
    width: 29px;
    height: 29px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--remittance-blue);
    font-family: Georgia, serif;
    font-size: 15px;
    font-weight: 900;
}

.summary-message p {
    margin: 0;
    color: var(--remittance-muted);
    font-size: 10px;
    line-height: 1.6;
}

.customer-enquiry-list {
    display: grid;
    gap: 22px;
}

.customer-enquiry-card {
    overflow: hidden;
    border: 1px solid var(--remittance-border);
    border-radius: 23px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(5, 64, 47, 0.08);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.customer-enquiry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(5, 64, 47, 0.12);
}

.customer-enquiry-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 25px;
    border-bottom: 1px solid var(--remittance-border);
    background:
        linear-gradient(to right, #f8fbfa, #fff);
}

.customer-reference small,
.customer-reference strong {
    display: block;
}

.customer-reference small {
    color: var(--remittance-muted);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.customer-reference strong {
    margin-top: 5px;
    color: #174438;
    font-family: Georgia, serif;
    font-size: 20px;
    letter-spacing: 0.5px;
}

.customer-enquiry-card-body {
    display: grid;
    grid-template-columns: 0.75fr 1.45fr 0.8fr;
    gap: 28px;
    align-items: center;
    padding: 27px 25px;
}

.customer-enquiry-destination {
    display: flex;
    align-items: center;
    gap: 14px;
}

.destination-symbol {
    display: grid;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 15px;
    color: #fff;
    background:
        linear-gradient(145deg, #159373, #05624a);
    box-shadow: 0 11px 25px rgba(8, 124, 92, 0.2);
    font-size: 11px;
    font-weight: 900;
}

.customer-enquiry-destination small,
.customer-enquiry-destination h2,
.customer-enquiry-destination span {
    display: block;
}

.customer-enquiry-destination small {
    color: var(--remittance-muted);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.customer-enquiry-destination h2 {
    margin: 4px 0 0;
    color: #12392e;
    font-family: Georgia, serif;
    font-size: 19px;
}

.customer-enquiry-destination span {
    margin-top: 4px;
    color: var(--remittance-green);
    font-size: 9px;
    font-weight: 900;
}

.customer-enquiry-information-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.customer-enquiry-information-grid div {
    min-width: 0;
}

.customer-enquiry-information-grid span,
.customer-enquiry-information-grid strong {
    display: block;
}

.customer-enquiry-information-grid span {
    color: var(--remittance-muted);
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.customer-enquiry-information-grid strong {
    margin-top: 5px;
    overflow-wrap: anywhere;
    color: #213e35;
    font-size: 11px;
}

.customer-estimate-panel {
    padding: 17px;
    border: 1px solid rgba(255, 189, 38, 0.45);
    border-radius: 14px;
    background: #fff9e8;
}

.customer-estimate-panel span,
.customer-estimate-panel strong,
.customer-estimate-panel small {
    display: block;
}

.customer-estimate-panel span {
    color: #937023;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.customer-estimate-panel strong {
    margin-top: 7px;
    color: #745106;
    font-family: Georgia, serif;
    font-size: 18px;
}

.customer-estimate-panel small {
    margin-top: 6px;
    color: #a28a54;
    font-size: 8px;
    line-height: 1.5;
}

.customer-enquiry-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 15px 25px;
    border-top: 1px solid var(--remittance-border);
    background: #fbfcfc;
}

.customer-enquiry-updated {
    color: var(--remittance-muted);
    font-size: 9px;
}

.customer-enquiry-view-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--remittance-green);
    font-size: 10px;
    font-weight: 900;
    text-decoration: none;
    transition:
        gap 0.2s ease,
        color 0.2s ease;
}

.customer-enquiry-view-button:hover {
    gap: 12px;
    color: var(--remittance-green-dark);
}

.customer-visible-activities {
    padding: 20px 25px;
    border-top: 1px solid var(--remittance-border);
    background: #f5faf8;
}

.customer-activity {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.customer-activity + .customer-activity {
    margin-top: 17px;
    padding-top: 17px;
    border-top: 1px dashed #cdded8;
}

.customer-activity-dot {
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    margin-top: 4px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: var(--remittance-green);
    box-shadow: 0 0 0 3px rgba(8, 124, 92, 0.14);
}

.customer-activity strong {
    color: #174438;
    font-size: 10px;
}

.customer-activity p {
    margin: 5px 0 0;
    color: var(--remittance-muted);
    font-size: 10px;
    line-height: 1.6;
}

.customer-activity small {
    display: block;
    margin-top: 6px;
    color: #92a39d;
    font-size: 8px;
}

.customer-empty-state {
    max-width: 680px;
    margin: 20px auto;
    padding: 70px 35px;
    border: 1px solid var(--remittance-border);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--remittance-shadow);
    text-align: center;
}

.customer-empty-icon {
    display: grid;
    width: 78px;
    height: 78px;
    margin: 0 auto 24px;
    place-items: center;
    border-radius: 23px;
    color: var(--remittance-gold);
    background:
        linear-gradient(145deg, #073f4b, #092f5b);
    box-shadow: 0 17px 40px rgba(8, 54, 67, 0.2);
    font-size: 32px;
}

.customer-empty-state > span {
    color: var(--remittance-green);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.6px;
}

.customer-empty-state h2 {
    margin: 10px 0 0;
    color: #12372d;
    font-family: Georgia, serif;
    font-size: 35px;
    line-height: 1.1;
}

.customer-empty-state p {
    max-width: 490px;
    margin: 15px auto 25px;
    color: var(--remittance-muted);
    font-size: 12px;
    line-height: 1.7;
}

/* =========================================================
   CUSTOMER ENQUIRY RESPONSIVE
========================================================= */

@media (max-width: 960px) {
    .customer-enquiry-card-body {
        grid-template-columns: 1fr 1.5fr;
    }

    .customer-estimate-panel {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .customer-enquiries-hero {
        padding: 60px 0;
    }

    .customer-enquiries-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .customer-enquiries-heading .remittance-button {
        width: 100%;
    }

    .customer-enquiry-summary {
        grid-template-columns: 1fr;
    }

    .customer-enquiry-card-body {
        grid-template-columns: 1fr;
    }

    .customer-estimate-panel {
        grid-column: auto;
    }
}

@media (max-width: 520px) {
    .customer-enquiries-heading h1 {
        font-size: 43px;
        letter-spacing: -2px;
    }

    .customer-enquiry-card-header,
    .customer-enquiry-card-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .customer-enquiry-information-grid {
        grid-template-columns: 1fr;
    }

    .customer-reference strong {
        font-size: 17px;
    }
}




/* =========================================================
   REMITTANCE STAFF DASHBOARD
========================================================= */

.remittance-staff-page {
    min-height: 100vh;
    color: var(--remittance-text);
    background: #f1f6f4;
}

.staff-dashboard-hero {
    position: relative;
    padding: 70px 0;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 85% 5%, rgba(255, 189, 38, 0.24), transparent 28%),
        linear-gradient(135deg, #061e2c, #074a4d 55%, #0d3767);
}

.staff-dashboard-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
    background-size: 52px 52px;
    pointer-events: none;
}

.staff-dashboard-heading {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
}

.staff-dashboard-heading > div:first-child {
    max-width: 720px;
}

.staff-dashboard-eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 100px;
    color: var(--remittance-gold);
    background: rgba(255, 255, 255, 0.07);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.7px;
}

.staff-dashboard-heading h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1;
    letter-spacing: -3px;
}

.staff-dashboard-heading p {
    margin: 17px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.7;
}

.staff-dashboard-user {
    display: flex;
    max-width: 300px;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
}

.staff-user-icon {
    display: grid;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 12px;
    color: #173226;
    background: var(--remittance-gold);
    font-family: Georgia, serif;
    font-size: 18px;
    font-weight: 900;
}

.staff-dashboard-user small,
.staff-dashboard-user strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.staff-dashboard-user small {
    color: rgba(255, 255, 255, 0.52);
    font-size: 8px;
    text-transform: uppercase;
}

.staff-dashboard-user strong {
    margin-top: 4px;
    font-size: 10px;
    white-space: nowrap;
}

.staff-dashboard-content {
    padding: 55px 0 100px;
}

.staff-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 22px;
}

.staff-filter-form {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 10px;
}

.staff-search-field {
    position: relative;
    flex: 1;
    max-width: 480px;
}

.staff-search-field > span {
    position: absolute;
    top: 50%;
    left: 15px;
    color: #71877f;
    font-size: 19px;
    transform: translateY(-50%);
}

.staff-search-field input,
.staff-status-filter select {
    width: 100%;
    min-height: 46px;
    border: 1px solid #d2dfdb;
    border-radius: 11px;
    outline: none;
    color: #17362d;
    background: #fff;
    font-family: inherit;
    font-size: 11px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.staff-search-field input {
    padding: 0 15px 0 43px;
}

.staff-status-filter {
    width: 190px;
}

.staff-status-filter select {
    padding: 0 13px;
}

.staff-search-field input:focus,
.staff-status-filter select:focus {
    border-color: var(--remittance-green);
    box-shadow: 0 0 0 4px rgba(8, 124, 92, 0.09);
}

.staff-filter-button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 0;
    border-radius: 11px;
    cursor: pointer;
    color: #fff;
    background: var(--remittance-green);
    font-family: inherit;
    font-size: 10px;
    font-weight: 900;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.staff-filter-button:hover {
    color: #fff;
    background: var(--remittance-green-dark);
    transform: translateY(-2px);
}

.staff-clear-filter {
    color: #74867f;
    font-size: 10px;
    font-weight: 800;
    text-decoration: none;
}

.staff-clear-filter:hover {
    color: var(--remittance-danger);
}

.staff-result-count {
    flex: 0 0 auto;
    color: var(--remittance-muted);
    font-size: 10px;
}

.staff-result-count span {
    color: var(--remittance-green);
    font-size: 16px;
    font-weight: 900;
}

/* =========================================================
   STAFF TABLE
========================================================= */

.staff-table-wrapper {
    overflow-x: auto;
    border: 1px solid #d8e4e0;
    border-radius: 19px;
    background: #fff;
    box-shadow: 0 18px 55px rgba(5, 56, 42, 0.08);
}

.staff-enquiry-table {
    width: 100%;
    min-width: 1100px;
    border-collapse: collapse;
}

.staff-enquiry-table thead {
    background:
        linear-gradient(to right, #f4f8f7, #f9fbfa);
}

.staff-enquiry-table th {
    padding: 15px 14px;
    color: #667b74;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-align: left;
    text-transform: uppercase;
    white-space: nowrap;
}

.staff-enquiry-table td {
    padding: 17px 14px;
    border-top: 1px solid #e5ece9;
    color: #29443b;
    font-size: 10px;
    vertical-align: middle;
}

.staff-enquiry-table tbody tr {
    transition: background 0.2s ease;
}

.staff-enquiry-table tbody tr:hover {
    background: #f7fbf9;
}

.staff-reference-link {
    display: block;
    color: #145e9d;
    font-family: Georgia, serif;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.staff-reference-link:hover {
    color: var(--remittance-green);
}

.existing-ria-badge {
    display: inline-block;
    margin-top: 6px;
    padding: 4px 7px;
    border-radius: 100px;
    color: #815e0c;
    background: #fff3cc;
    font-size: 7px;
    font-weight: 900;
    text-transform: uppercase;
}

.staff-customer-cell {
    display: flex;
    min-width: 180px;
    align-items: center;
    gap: 10px;
}

.staff-customer-avatar {
    display: grid;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 10px;
    color: #fff;
    background:
        linear-gradient(145deg, #0c9570, #075a45);
    font-family: Georgia, serif;
    font-weight: 900;
}

.staff-customer-cell strong,
.staff-customer-cell small {
    display: block;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.staff-customer-cell strong {
    color: #1b3b32;
    font-size: 10px;
}

.staff-customer-cell small {
    margin-top: 4px;
    color: #7c8e88;
    font-size: 8px;
}

.staff-table-secondary {
    display: block;
    margin-top: 5px;
    color: #869891;
    font-size: 8px;
}

.staff-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    border-radius: 100px;
    color: #14533f;
    background: #dff6ee;
    font-size: 7px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

.staff-status::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #15976f;
}

.staff-status.status-new {
    color: #174e87;
    background: #e1efff;
}

.staff-status.status-new::before {
    background: #2a77c8;
}

.staff-status.status-contacted {
    color: #77560d;
    background: #fff1c9;
}

.staff-status.status-contacted::before {
    background: #d99d17;
}

.staff-status.status-awaiting_details {
    color: #7a4814;
    background: #ffead5;
}

.staff-status.status-awaiting_details::before {
    background: #dd8121;
}

.staff-status.status-quoted {
    color: #573c8d;
    background: #eee7ff;
}

.staff-status.status-quoted::before {
    background: #7959bd;
}

.staff-status.status-referred_to_ria {
    color: #174e87;
    background: #e4effc;
}

.staff-status.status-referred_to_ria::before {
    background: #286eb4;
}

.staff-status.status-completed {
    color: #15552f;
    background: #dff5e7;
}

.staff-status.status-completed::before {
    background: #259253;
}

.staff-status.status-cancelled {
    color: #8a2821;
    background: #fde7e5;
}

.staff-status.status-cancelled::before {
    background: #c7463c;
}

.assigned-staff {
    display: flex;
    max-width: 150px;
    align-items: center;
    gap: 7px;
}

.assigned-staff > span {
    display: grid;
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: #244a65;
    font-size: 8px;
    font-weight: 900;
}

.assigned-staff small {
    overflow: hidden;
    color: #516b62;
    font-size: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.unassigned-label {
    display: inline-block;
    padding: 5px 8px;
    border: 1px dashed #c5d2ce;
    border-radius: 7px;
    color: #84948f;
    font-size: 8px;
}

.staff-open-button {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 9px;
    color: #fff;
    background: var(--remittance-green);
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.staff-open-button:hover {
    color: #fff;
    background: var(--remittance-green-dark);
    transform: translateX(3px);
}

/* =========================================================
   STAFF PAGINATION
========================================================= */

.staff-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 24px;
}

.pagination-information {
    color: var(--remittance-muted);
    font-size: 10px;
}

.pagination-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
}

.pagination-buttons a,
.pagination-buttons span {
    display: inline-flex;
    min-width: 35px;
    min-height: 35px;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border: 1px solid #d1dfda;
    border-radius: 9px;
    color: #496159;
    background: #fff;
    font-size: 9px;
    font-weight: 800;
    text-decoration: none;
}

.pagination-buttons a:hover {
    color: #fff;
    border-color: var(--remittance-green);
    background: var(--remittance-green);
}

.pagination-buttons .current-page {
    color: #fff;
    border-color: var(--remittance-green);
    background: var(--remittance-green);
}

/* =========================================================
   STAFF EMPTY STATE
========================================================= */

.staff-empty-state {
    max-width: 670px;
    margin: 30px auto;
    padding: 65px 35px;
    border: 1px solid var(--remittance-border);
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--remittance-shadow);
    text-align: center;
}

.staff-empty-icon {
    display: grid;
    width: 70px;
    height: 70px;
    margin: 0 auto 22px;
    place-items: center;
    border-radius: 20px;
    color: var(--remittance-gold);
    background:
        linear-gradient(145deg, #072f42, #0b4c68);
    font-size: 30px;
}

.staff-empty-state > span {
    color: var(--remittance-green);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.staff-empty-state h2 {
    margin: 9px 0 0;
    color: #173a30;
    font-family: Georgia, serif;
    font-size: 33px;
}

.staff-empty-state p {
    max-width: 490px;
    margin: 13px auto 23px;
    color: var(--remittance-muted);
    font-size: 11px;
    line-height: 1.7;
}

/* =========================================================
   STAFF DASHBOARD RESPONSIVE
========================================================= */

@media (max-width: 900px) {
    .staff-dashboard-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .staff-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .staff-filter-form {
        width: 100%;
    }
}

@media (max-width: 650px) {
    .staff-dashboard-hero {
        padding: 55px 0;
    }

    .staff-dashboard-heading h1 {
        font-size: 43px;
        letter-spacing: -2px;
    }

    .staff-dashboard-user {
        width: 100%;
        max-width: none;
    }

    .staff-filter-form {
        align-items: stretch;
        flex-direction: column;
    }

    .staff-search-field,
    .staff-status-filter {
        width: 100%;
        max-width: none;
    }

    .staff-filter-button {
        width: 100%;
    }

    .staff-pagination {
        align-items: flex-start;
        flex-direction: column;
    }
}



/* =========================================================
   STAFF ENQUIRY DETAIL PAGE
========================================================= */

.staff-detail-page {
    min-height: 100vh;
    color: var(--remittance-text);
    background:
        radial-gradient(circle at 5% 30%, rgba(8, 124, 92, 0.07), transparent 22%),
        #f1f6f4;
}

.staff-detail-header {
    position: relative;
    padding: 55px 0 65px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 88% 5%, rgba(255, 189, 38, 0.22), transparent 27%),
        linear-gradient(135deg, #061f2d, #07514f 58%, #0b3664);
}

.staff-detail-header::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
    background-size: 52px 52px;
    pointer-events: none;
}

.staff-detail-back {
    position: relative;
    z-index: 2;
    display: inline-flex;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 10px;
    font-weight: 800;
    text-decoration: none;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.staff-detail-back:hover {
    color: var(--remittance-gold);
    transform: translateX(-4px);
}

.staff-detail-heading {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
}

.staff-detail-eyebrow {
    color: var(--remittance-gold);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.7px;
}

.staff-detail-heading h1 {
    margin: 9px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1;
    letter-spacing: -2px;
}

.staff-detail-heading p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
}

.staff-detail-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.staff-whatsapp-button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    gap: 9px;
    padding: 0 17px;
    border-radius: 11px;
    color: #fff;
    background: #1fa66f;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
    font-size: 10px;
    font-weight: 900;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.staff-whatsapp-button:hover {
    color: #fff;
    background: #14865a;
    transform: translateY(-2px);
}

/* =========================================================
   DETAIL LAYOUT
========================================================= */

.staff-detail-content {
    padding: 50px 0 100px;
}

.staff-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 25px;
    align-items: start;
}

.staff-detail-main {
    display: grid;
    gap: 22px;
}

.staff-detail-sidebar {
    position: sticky;
    top: 25px;
    display: grid;
    gap: 18px;
}

.staff-detail-card,
.staff-update-card,
.staff-quick-contact-card,
.staff-notes-card,
.staff-compliance-card {
    border: 1px solid var(--remittance-border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(5, 57, 43, 0.07);
}

.staff-detail-card {
    padding: 27px;
}

.staff-card-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
    padding-bottom: 17px;
    border-bottom: 1px solid var(--remittance-border);
}

.staff-card-heading span:not(.staff-heading-icon) {
    color: var(--remittance-green);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.staff-card-heading h2 {
    margin: 5px 0 0;
    color: #17392f;
    font-family: Georgia, serif;
    font-size: 24px;
}

.staff-heading-icon {
    display: grid;
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background:
        linear-gradient(145deg, #0d9270, #075d48);
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: 900;
}

.staff-information-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.staff-information-item {
    min-width: 0;
    padding: 15px;
    border: 1px solid #e0e9e6;
    border-radius: 12px;
    background: #f9fbfa;
}

.staff-information-item > span,
.staff-information-item > strong,
.staff-information-item > a {
    display: block;
}

.staff-information-item > span {
    color: #7b8e87;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.staff-information-item > strong,
.staff-information-item > a {
    margin-top: 6px;
    overflow-wrap: anywhere;
    color: #203f36;
    font-size: 10px;
    font-weight: 800;
    text-decoration: none;
}

.staff-information-item > a:hover {
    color: var(--remittance-green);
}

/* =========================================================
   TRANSFER DETAILS
========================================================= */

.staff-transfer-highlight {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: center;
    margin-bottom: 20px;
    padding: 22px;
    border-radius: 16px;
    color: #fff;
    background:
        radial-gradient(circle at 95% 5%, rgba(255, 189, 38, 0.25), transparent 32%),
        linear-gradient(135deg, #073b43, #075c53);
}

.staff-transfer-highlight div {
    text-align: center;
}

.staff-transfer-highlight span,
.staff-transfer-highlight strong {
    display: block;
}

.staff-transfer-highlight div > span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.staff-transfer-highlight strong {
    margin-top: 8px;
    color: var(--remittance-gold);
    font-family: Georgia, serif;
    font-size: 24px;
}

.staff-transfer-arrow {
    display: grid !important;
    width: 38px;
    height: 38px;
    margin: 0 auto;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08);
    font-size: 15px !important;
}

.transfer-information-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.staff-demo-warning {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 19px;
    padding: 15px;
    border: 1px solid #ecdca7;
    border-radius: 12px;
    background: #fff9e9;
}

.staff-demo-warning > span {
    display: grid;
    flex: 0 0 27px;
    width: 27px;
    height: 27px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #a87813;
    font-family: Georgia, serif;
    font-size: 13px;
    font-weight: 900;
}

.staff-demo-warning p {
    margin: 0;
    color: #806b38;
    font-size: 9px;
    line-height: 1.65;
}

/* =========================================================
   CUSTOMER MESSAGE
========================================================= */

.staff-customer-message {
    position: relative;
    padding: 20px;
    border-left: 4px solid var(--remittance-green);
    border-radius: 0 13px 13px 0;
    color: #405d54;
    background: #f5faf8;
    font-size: 11px;
    line-height: 1.75;
}

.staff-customer-message p {
    margin: 0;
}

.staff-customer-message p + p {
    margin-top: 10px;
}

/* =========================================================
   ACTIVITY TIMELINE
========================================================= */

.staff-activity-timeline {
    position: relative;
}

.staff-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 13px;
}

.staff-timeline-item + .staff-timeline-item {
    margin-top: 3px;
}

.staff-timeline-marker {
    position: relative;
    z-index: 2;
    width: 11px;
    height: 11px;
    margin-top: 5px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--remittance-green);
    box-shadow: 0 0 0 2px rgba(8, 124, 92, 0.17);
}

.staff-timeline-item:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 15px;
    bottom: -4px;
    left: 5px;
    width: 1px;
    background: #d4e2dd;
}

.staff-timeline-content {
    padding: 0 0 22px;
}

.staff-timeline-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.staff-timeline-heading strong {
    color: #1b4136;
    font-size: 11px;
}

.staff-timeline-heading span {
    padding: 4px 7px;
    border-radius: 100px;
    color: #156447;
    background: #e1f5ed;
    font-size: 7px;
    font-weight: 900;
    text-transform: uppercase;
}

.staff-timeline-heading .internal-activity {
    color: #78581c;
    background: #fff1cc;
}

.staff-timeline-content p {
    margin: 7px 0 0;
    color: #60766e;
    font-size: 10px;
    line-height: 1.65;
}

.staff-timeline-content small {
    display: block;
    margin-top: 7px;
    color: #95a49f;
    font-size: 8px;
}

.staff-no-activity {
    padding: 25px;
    border: 1px dashed #cddbd6;
    border-radius: 12px;
    color: #7d9089;
    background: #fafcfc;
    font-size: 10px;
    text-align: center;
}

/* =========================================================
   UPDATE SIDEBAR
========================================================= */

.staff-update-card {
    overflow: hidden;
}

.staff-update-heading {
    padding: 23px;
    color: #fff;
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 189, 38, 0.25), transparent 35%),
        linear-gradient(135deg, #063a3d, #075f53);
}

.staff-update-heading > span {
    color: var(--remittance-gold);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.staff-update-heading h2 {
    margin: 6px 0 0;
    font-family: Georgia, serif;
    font-size: 26px;
}

.staff-update-heading p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.59);
    font-size: 9px;
    line-height: 1.6;
}

.staff-update-form {
    padding: 22px;
}

.staff-update-field + .staff-update-field {
    margin-top: 17px;
}

.staff-update-field label {
    display: block;
    margin-bottom: 8px;
    color: #29483e;
    font-size: 9px;
    font-weight: 900;
}

.staff-update-field select,
.staff-update-field textarea {
    width: 100%;
    border: 1px solid #d3dfdb;
    border-radius: 10px;
    outline: none;
    color: #244239;
    background: #f9fbfa;
    font-family: inherit;
    font-size: 10px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.staff-update-field select {
    min-height: 44px;
    padding: 0 12px;
}

.staff-update-field textarea {
    min-height: 120px;
    padding: 12px;
    resize: vertical;
}

.staff-update-field select:focus,
.staff-update-field textarea:focus {
    border-color: var(--remittance-green);
    box-shadow: 0 0 0 4px rgba(8, 124, 92, 0.09);
}

.staff-visible-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 16px;
    padding: 12px;
    border: 1px solid #dce6e2;
    border-radius: 10px;
    cursor: pointer;
    background: #f7faf9;
}

.staff-visible-checkbox input {
    width: 16px;
    height: 16px;
    margin-top: 1px;
    accent-color: var(--remittance-green);
}

.staff-visible-checkbox span {
    color: #536a62;
    font-size: 9px;
    line-height: 1.5;
}

.staff-update-submit {
    display: flex;
    width: 100%;
    min-height: 47px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 18px;
    border: 0;
    border-radius: 11px;
    cursor: pointer;
    color: #123025;
    background: var(--remittance-gold);
    font-family: inherit;
    font-size: 10px;
    font-weight: 900;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.staff-update-submit:hover {
    background: #ffc94c;
    transform: translateY(-2px);
}

/* =========================================================
   QUICK CONTACT
========================================================= */

.staff-quick-contact-card {
    padding: 22px;
}

.quick-contact-eyebrow,
.staff-notes-card > span {
    color: var(--remittance-green);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.3px;
}

.staff-quick-contact-card h3 {
    margin: 6px 0 17px;
    color: #193c32;
    font-family: Georgia, serif;
    font-size: 22px;
}

.quick-contact-option {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 20px;
    align-items: center;
    gap: 10px;
    padding: 11px;
    border: 1px solid #dce6e2;
    border-radius: 11px;
    color: #24433a;
    background: #fafcfc;
    text-decoration: none;
    transition:
        border-color 0.2s ease,
        transform 0.2s ease,
        background 0.2s ease;
}

.quick-contact-option + .quick-contact-option {
    margin-top: 9px;
}

.quick-contact-option > span {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 10px;
    color: #fff;
    background: #31576e;
}

.quick-contact-option strong,
.quick-contact-option small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.quick-contact-option strong {
    font-size: 9px;
}

.quick-contact-option small {
    margin-top: 4px;
    color: #778a83;
    font-size: 8px;
}

.quick-contact-option b {
    color: #71857e;
    font-size: 12px;
}

.quick-contact-option:hover {
    color: #24433a;
    border-color: var(--remittance-green);
    background: #f2faf7;
    transform: translateX(3px);
}

.whatsapp-option > span {
    background: #20a66f;
}

/* =========================================================
   STAFF NOTES AND COMPLIANCE
========================================================= */

.staff-notes-card {
    padding: 21px;
}

.staff-notes-card p {
    margin: 10px 0 0;
    color: #5e746c;
    font-size: 9px;
    line-height: 1.7;
}

.staff-compliance-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    border-color: #eadba8;
    background: #fff9e9;
}

.staff-compliance-icon {
    display: grid;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #a87813;
    font-family: Georgia, serif;
    font-weight: 900;
}

.staff-compliance-card strong {
    color: #6e500f;
    font-size: 10px;
}

.staff-compliance-card p {
    margin: 5px 0 0;
    color: #806b3b;
    font-size: 8px;
    line-height: 1.6;
}

/* =========================================================
   STAFF DETAIL MESSAGES
========================================================= */

.staff-detail-messages {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
}

.staff-detail-message {
    padding: 14px 17px;
    border: 1px solid #bde2d5;
    border-radius: 11px;
    color: #155a43;
    background: #e8f8f2;
    font-size: 10px;
    font-weight: 700;
}

.staff-detail-message.error {
    color: #8a2c25;
    border-color: #efc2be;
    background: #fff0ef;
}

/* =========================================================
   STAFF DETAIL RESPONSIVE
========================================================= */

@media (max-width: 1000px) {
    .staff-detail-layout {
        grid-template-columns: 1fr;
    }

    .staff-detail-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .staff-update-card {
        grid-row: span 2;
    }
}

@media (max-width: 750px) {
    .staff-detail-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .staff-detail-header-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .staff-information-grid,
    .transfer-information-grid {
        grid-template-columns: 1fr;
    }

    .staff-transfer-highlight {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .staff-transfer-arrow {
        transform: rotate(90deg);
    }

    .staff-detail-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .staff-detail-header {
        padding: 45px 0 55px;
    }

    .staff-detail-heading h1 {
        font-size: 34px;
        overflow-wrap: anywhere;
    }

    .staff-detail-card {
        padding: 20px;
    }

    .staff-card-heading h2 {
        font-size: 21px;
    }

    .staff-whatsapp-button {
        width: 100%;
        justify-content: center;
    }
}


/* =========================================================
   CHECKOUT READABILITY OVERRIDE
========================================================= */

.checkout-back-link {
    font-size: 14px;
    font-weight: 800;
}

.checkout-header-content > div:first-child > span {
    font-size: 13px;
    font-weight: 900;
}

.checkout-header-content p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
}

.checkout-security-badge strong {
    font-size: 14px;
    font-weight: 900;
}

.checkout-security-badge small {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.checkout-card-heading small {
    font-size: 12px;
    font-weight: 900;
}

.checkout-card-heading h2 {
    font-size: 31px;
    font-weight: 800;
}

.checkout-card-heading p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
}

.checkout-step-number {
    font-size: 17px;
}

.checkout-field label {
    margin-bottom: 10px;
    color: #183c31;
    font-size: 14px;
    font-weight: 900;
}

.checkout-input {
    min-height: 54px;
    padding-right: 16px;
    padding-left: 16px;
    color: #183c31;
    font-size: 14px;
    font-weight: 600;
}

.checkout-input::placeholder {
    color: #8a9a94;
    font-size: 13px;
    font-weight: 500;
}

textarea.checkout-input {
    min-height: 125px;
    padding-top: 15px;
}

.checkout-field-error {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 800;
}

.checkout-form-errors {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
}

.checkout-choice-content strong {
    font-size: 15px;
    font-weight: 900;
}

.checkout-choice-content small {
    margin-top: 6px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.55;
}

.checkout-choice-icon {
    font-size: 22px;
}

.checkout-choice-check {
    font-size: 11px;
}

.checkout-subheading span {
    font-size: 11px;
    font-weight: 900;
}

.checkout-subheading h3 {
    font-size: 26px;
    font-weight: 800;
}

.checkout-checkbox-card strong {
    font-size: 14px;
    font-weight: 900;
}

.checkout-checkbox-card small {
    margin-top: 5px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.checkout-payment-notice {
    padding: 16px;
}

.checkout-payment-notice i {
    font-size: 18px;
}

.checkout-payment-notice p {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.65;
}

/* ORDER SUMMARY */

.checkout-summary-heading span {
    font-size: 12px;
    font-weight: 900;
}

.checkout-summary-heading h2 {
    font-size: 34px;
    font-weight: 800;
}

.checkout-summary-product strong {
    font-size: 13px;
    font-weight: 900;
    line-height: 1.45;
}

.checkout-summary-product small {
    margin-top: 5px;
    font-size: 11px;
    font-weight: 600;
}

.checkout-summary-product > span {
    font-size: 13px;
    font-weight: 900;
}

.checkout-product-image b {
    width: 23px;
    height: 23px;
    font-size: 10px;
}

.checkout-summary-lines {
    padding: 24px 26px;
}

.checkout-summary-lines > div + div {
    margin-top: 18px;
}

.checkout-summary-lines span {
    font-size: 14px;
    font-weight: 700;
}

.checkout-summary-lines strong {
    font-size: 14px;
    font-weight: 900;
}

.checkout-summary-total {
    margin-right: 26px;
    margin-left: 26px;
    padding: 24px 0;
}

.checkout-summary-total span {
    font-size: 17px;
    font-weight: 900;
}

.checkout-summary-total small {
    max-width: 190px;
    margin-top: 7px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.5;
}

.checkout-summary-total > strong {
    font-size: 30px;
    font-weight: 900;
}

.checkout-submit-button {
    width: calc(100% - 52px);
    min-height: 58px;
    margin-right: 26px;
    margin-left: 26px;
    font-size: 14px;
    font-weight: 900;
}

.checkout-summary-security {
    margin: 18px 26px 26px;
    padding: 15px;
}

.checkout-summary-security i {
    font-size: 16px;
}

.checkout-summary-security p {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.65;
}

/* RADIO AND CHECKBOX SIZE */

.checkout-choice-card {
    min-height: 88px;
    padding: 18px;
}

.checkout-choice-card > input,
.checkout-checkbox-card > input {
    width: 20px;
    height: 20px;
}

@media (max-width: 600px) {
    .checkout-card-heading h2 {
        font-size: 27px;
    }

    .checkout-header-content p {
        font-size: 14px;
    }

    .checkout-choice-content strong {
        font-size: 14px;
    }

    .checkout-input {
        font-size: 16px;
    }
}



