:root {
    --primary: #0c1d3c;
    --primary-soft: #173564;
    --secondary: #d7b23f;
    --secondary-soft: #f3e6b7;
    --surface: #ffffff;
    --surface-alt: #f9f6ed;
    --text: #16253b;
    --muted: #5d6879;
    --border: #e7dcc0;
    --shadow: 0 18px 45px rgba(12, 29, 60, 0.12);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --container: 1180px;
}

/* BASE_RESET_START */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
}

body {
    margin: 0;
    color: var(--text);
    line-height: 1.85;
    background:
        radial-gradient(circle at top right, rgba(215, 178, 63, 0.18), transparent 24%),
        linear-gradient(180deg, #fdfcf8 0%, #f6f1e5 100%);
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--primary-soft);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}
/* BASE_RESET_END */

/* COMPLAINTS_PAGE_STYLES_START */
/* ===== Step 06: Complaints page styling ===== */
.complaints-page {
    min-height: 100vh;
    padding: 34px 0 70px;
    background:
        radial-gradient(circle at top right, rgba(215, 178, 63, 0.12), transparent 22%),
        linear-gradient(180deg, #fdfcf8 0%, #f6f1e5 100%);
}

.complaints-shell {
    width: min(calc(100% - 32px), 980px);
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    border-radius: 30px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.complaints-header {
    padding: 26px 30px 22px;
    background:
        linear-gradient(135deg, rgba(12, 29, 60, 0.98) 0%, rgba(22, 45, 86, 0.96) 54%, rgba(10, 22, 45, 0.98) 100%);
    color: #ffffff;
}

.complaints-header .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
}

.complaints-header .back-link:hover {
    color: #ffffff;
    text-decoration: none;
}

.complaints-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(215, 178, 63, 0.18);
    border: 1px solid rgba(243, 230, 183, 0.35);
    color: #f4df95;
    font-size: 0.96rem;
    font-weight: 800;
}

.complaints-header h1 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
}

.complaints-header p {
    margin: 0;
    max-width: 780px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.02rem;
}

.complaints-form {
    padding: 28px 30px 34px;
}

.complaints-form > .form-block:first-child {
    margin-bottom: 18px;
    padding: 20px 22px;
    background: linear-gradient(180deg, #fbf8ee 0%, #f5eedb 100%);
    border: 1px solid rgba(215, 178, 63, 0.26);
    border-radius: 22px;
}

.complaint-group {
    margin-top: 18px;
    padding: 24px 22px 22px;
    background: #ffffff;
    border: 1px solid rgba(12, 29, 60, 0.10);
    border-radius: 24px;
    box-shadow: 0 10px 26px rgba(12, 29, 60, 0.06);
}

.complaint-group h2 {
    margin: 0 0 18px;
    color: var(--primary);
    font-size: 1.8rem;
    line-height: 1.3;
}

.form-block {
    margin-bottom: 16px;
}

.form-block:last-child {
    margin-bottom: 0;
}

.form-block label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-weight: 800;
    font-size: 1rem;
}

.form-block input,
.form-block select,
.form-block textarea {
    width: 100%;
    border: 1px solid rgba(12, 29, 60, 0.16);
    border-radius: 16px;
    background: #ffffff;
    color: var(--text);
    font: inherit;
    padding: 13px 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-block textarea {
    min-height: 136px;
    resize: vertical;
}

.form-block input:focus,
.form-block select:focus,
.form-block textarea:focus {
    outline: none;
    border-color: rgba(215, 178, 63, 0.92);
    box-shadow: 0 0 0 4px rgba(215, 178, 63, 0.16);
    background: #fffdf7;
}

.form-block input[type="file"] {
    padding: 10px 12px;
    background: #fbfaf5;
}

.attachment-block {
    margin-top: 18px;
    padding: 20px 22px;
    background: linear-gradient(180deg, #fbf8ee 0%, #f8f4e7 100%);
    border: 1px dashed rgba(215, 178, 63, 0.45);
    border-radius: 22px;
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px dashed rgba(12, 29, 60, 0.12);
}

.form-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 14px 24px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #e7c95c 0%, #d7b23f 100%);
    color: #0f1d36;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 18px 34px rgba(215, 178, 63, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.form-actions button:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 40px rgba(215, 178, 63, 0.32);
    filter: brightness(1.02);
}

.secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 13px 22px;
    border: 1px solid rgba(12, 29, 60, 0.14);
    border-radius: 999px;
    background: #ffffff;
    color: var(--primary);
    font-weight: 800;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.secondary-link:hover {
    text-decoration: none;
    transform: translateY(-1px);
    border-color: rgba(215, 178, 63, 0.35);
    box-shadow: 0 12px 24px rgba(12, 29, 60, 0.08);
}

@media (max-width: 768px) {
    .complaints-page {
        padding: 20px 0 34px;
    }

    .complaints-shell {
        width: min(calc(100% - 20px), 980px);
        border-radius: 22px;
    }

    .complaints-header {
        padding: 20px 16px 18px;
    }

    .complaints-form {
        padding: 18px 16px 24px;
    }

    .complaints-form > .form-block:first-child,
    .complaint-group,
    .attachment-block {
        padding: 18px 16px;
        border-radius: 18px;
    }

    .complaint-group h2 {
        font-size: 1.5rem;
    }

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

    .form-actions button,
    .secondary-link {
        width: 100%;
    }
}
/* ===== End Step 06 ===== */

/* ===== Step 07: Complaints logo + single active section ===== */
.complaints-logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.complaints-logo {
    width: min(100%, 340px);
    max-height: 150px;
    object-fit: contain;
    object-position: center;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(215, 178, 63, 0.25);
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

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

.complaint-type-block {
    margin-bottom: 18px;
}

.complaint-type-hint {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.complaint-group {
    display: none;
}

.complaint-group.is-active {
    display: block;
}

@media (max-width: 768px) {
    .complaints-logo-wrap {
        margin-bottom: 14px;
        padding-bottom: 14px;
    }

    .complaints-logo {
        width: min(100%, 240px);
        max-height: 112px;
        padding: 8px 10px;
        border-radius: 18px;
    }

    .complaints-header-top {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* STEP_08_COMPLAINTS_REFINEMENTS_START */
.complaints-page {
    background: linear-gradient(180deg, #f6f2e8 0%, #f2eee3 100%);
    color: #0d2a57;
    font-family: "Tahoma", "Arial", sans-serif;
}

.complaints-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 40px auto;
    background: #ffffff;
    border: 1px solid rgba(212, 178, 74, 0.22);
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(13, 42, 87, 0.12);
    overflow: hidden;
}

.complaints-hero {
    padding: 28px 36px 34px;
    color: #ffffff;
    background:
        radial-gradient(circle at top left, rgba(212, 178, 74, 0.14), transparent 22%),
        linear-gradient(135deg, #102752 0%, #1a376b 60%, #132a56 100%);
}

.complaints-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.complaints-back-link {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}

.complaints-back-link:hover {
    text-decoration: underline;
}

.complaints-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    background: rgba(255, 214, 87, 0.16);
    border: 1px solid rgba(255, 214, 87, 0.35);
    color: #ffe08a;
    font-size: 1rem;
    font-weight: 800;
}

.complaints-logo-shell {
    display: flex;
    justify-content: center;
    margin: 8px 0 22px;
}

.complaints-logo-transparent {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.complaints-logo-img {
    display: block;
    width: min(380px, 100%);
    max-height: 180px;
    object-fit: contain;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.complaints-hero-copy {
    max-width: 760px;
    margin-inline-start: auto;
    text-align: right;
}

.complaints-hero-copy h1 {
    margin: 0 0 10px;
    font-size: clamp(2.7rem, 5vw, 4.2rem);
    line-height: 1.08;
    color: #ffffff;
}

.complaints-hero-copy p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.95;
    color: rgba(255, 255, 255, 0.95);
}

.complaints-form-card {
    padding: 34px 36px 38px;
    background: #ffffff;
}

.complaint-form {
    display: grid;
    gap: 24px;
}

.complaint-panel,
.complaint-section {
    padding: 24px 26px;
    border-radius: 24px;
    background: #fbfaf7;
    border: 1px solid rgba(212, 178, 74, 0.28);
    box-shadow: 0 10px 26px rgba(13, 42, 87, 0.04);
}

.complaint-panel {
    background: #f7f3e8;
}

.complaint-section h2 {
    margin: 0 0 18px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.2;
    color: #0d2a57;
}

.field-label {
    display: block;
    margin: 18px 0 10px;
    font-size: 1rem;
    font-weight: 800;
    color: #0d2a57;
}

.field-help {
    margin: 14px 0 0;
    color: #5f6f8f;
    font-size: 0.98rem;
}

.field-input {
    width: 100%;
    min-height: 60px;
    padding: 14px 18px;
    border-radius: 18px;
    border: 1px solid #cfd7e6;
    background: #ffffff;
    color: #0d2a57;
    font-size: 1.02rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.field-input:focus {
    outline: none;
    border-color: #d4b24a;
    box-shadow: 0 0 0 4px rgba(212, 178, 74, 0.16);
}

.field-textarea {
    min-height: 190px;
    resize: vertical;
    line-height: 1.8;
}

.field-file {
    padding: 12px 14px;
    min-height: auto;
}

.is-hidden {
    display: none !important;
}

.complaint-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    padding-top: 6px;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    min-height: 58px;
    padding: 0 28px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1.02rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    border: none;
    background: linear-gradient(135deg, #e0bf4c 0%, #f0d26a 100%);
    color: #0d2a57;
    box-shadow: 0 14px 34px rgba(224, 191, 76, 0.28);
}

.secondary-button {
    border: 1px solid #d7dce7;
    background: #ffffff;
    color: #0d2a57;
}

.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .complaints-shell {
        width: min(100% - 18px, 100%);
        margin: 12px auto;
        border-radius: 22px;
    }

    .complaints-hero,
    .complaints-form-card {
        padding: 22px 18px 26px;
    }

    .complaints-topbar {
        flex-direction: column;
        align-items: stretch;
    }

    .complaints-pill,
    .complaints-back-link {
        text-align: center;
        justify-content: center;
    }

    .complaints-logo-img {
        width: min(290px, 100%);
        max-height: 140px;
    }

    .complaints-hero-copy h1 {
        font-size: clamp(2.2rem, 10vw, 3.2rem);
    }

    .complaints-hero-copy p {
        font-size: 1rem;
        line-height: 1.9;
    }

    .complaint-panel,
    .complaint-section {
        padding: 20px 16px;
        border-radius: 20px;
    }

    .complaint-section h2 {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }

    .field-input {
        min-height: 56px;
        font-size: 1rem;
    }

    .field-textarea {
        min-height: 170px;
    }

    .complaint-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        min-width: 100%;
    }
}
/* STEP_08_COMPLAINTS_REFINEMENTS_END */

/* Step 17E Complaints header match */
.complaints-hero.complaints-hero--matched {
    padding: 34px 40px 30px;
    min-height: auto;
    border-radius: 28px 28px 0 0;
    overflow: hidden;
}

.complaints-hero--matched .complaints-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.complaints-logo-home-style {
    width: min(100%, 590px);
    margin: 0 auto 18px;
    background: #ffffff;
    border: 1px solid rgba(214, 185, 92, 0.28);
    border-radius: 26px;
    padding: 18px 26px;
    box-shadow: 0 18px 36px rgba(7, 20, 47, 0.16);
}

.complaints-logo-home-style .complaints-logo-img {
    display: block;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    height: auto;
    object-fit: contain;
}

.complaints-hero-copy--matched {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.complaints-hero-copy--matched h1 {
    margin: 10px 0 12px;
    font-size: clamp(46px, 5vw, 76px);
    line-height: 1.05;
}

.complaints-hero-copy--matched p {
    margin: 0 auto;
    max-width: 820px;
    font-size: clamp(17px, 1.5vw, 22px);
    line-height: 1.9;
}

@media (max-width: 900px) {
    .complaints-hero.complaints-hero--matched {
        padding: 26px 22px 24px;
        border-radius: 24px 24px 0 0;
    }

    .complaints-hero--matched .complaints-topbar {
        flex-direction: column-reverse;
        align-items: stretch;
        text-align: center;
        margin-bottom: 16px;
    }

    .complaints-logo-home-style {
        width: 100%;
        max-width: 430px;
        padding: 14px 18px;
        margin-bottom: 16px;
        border-radius: 22px;
    }

    .complaints-logo-home-style .complaints-logo-img {
        max-width: 330px;
    }

    .complaints-hero-copy--matched h1 {
        margin: 6px 0 10px;
    }

    .complaints-hero-copy--matched p {
        max-width: 100%;
        line-height: 1.75;
    }
}

@media (max-width: 640px) {
    .complaints-hero.complaints-hero--matched {
        padding: 22px 16px 20px;
    }

    .complaints-logo-home-style {
        max-width: 340px;
        padding: 12px 14px;
        border-radius: 18px;
    }

    .complaints-logo-home-style .complaints-logo-img {
        max-width: 270px;
    }

    .complaints-hero-copy--matched h1 {
        font-size: clamp(34px, 10vw, 52px);
    }

    .complaints-hero-copy--matched p {
        font-size: 16px;
    }
}

/* Step 17F Shrink complaints hero 50 percent */
.complaints-hero.complaints-hero--matched {
    padding: 20px 28px 18px;
}

.complaints-hero--matched .complaints-topbar {
    margin-bottom: 10px;
}

.complaints-logo-home-style {
    width: min(100%, 320px);
    margin: 0 auto 12px;
    padding: 10px 14px;
    border-radius: 18px;
}

.complaints-logo-home-style .complaints-logo-img {
    max-width: 250px;
}

.complaints-hero-copy--matched h1 {
    margin: 6px 0 8px;
    font-size: clamp(24px, 3vw, 40px);
    line-height: 1.1;
}

.complaints-hero-copy--matched p {
    max-width: 620px;
    font-size: clamp(13px, 1vw, 17px);
    line-height: 1.75;
}

@media (max-width: 900px) {
    .complaints-hero.complaints-hero--matched {
        padding: 18px 18px 16px;
    }

    .complaints-logo-home-style {
        max-width: 270px;
        padding: 8px 10px;
        margin-bottom: 10px;
    }

    .complaints-logo-home-style .complaints-logo-img {
        max-width: 210px;
    }

    .complaints-hero-copy--matched h1 {
        font-size: clamp(22px, 7vw, 34px);
        margin: 4px 0 6px;
    }

    .complaints-hero-copy--matched p {
        font-size: 14px;
        line-height: 1.7;
    }
}

@media (max-width: 640px) {
    .complaints-hero.complaints-hero--matched {
        padding: 16px 14px 14px;
    }

    .complaints-logo-home-style {
        max-width: 230px;
        padding: 7px 9px;
        border-radius: 14px;
    }

    .complaints-logo-home-style .complaints-logo-img {
        max-width: 180px;
    }

    .complaints-hero-copy--matched h1 {
        font-size: clamp(20px, 8vw, 28px);
    }

    .complaints-hero-copy--matched p {
        font-size: 13px;
    }
}

/* Step 18 Complaints topbar cleanup */
.complaints-hero--matched .complaints-topbar {
    justify-content: flex-start;
    margin-bottom: 8px;
}

.complaints-hero--matched .complaints-back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(214, 185, 92, 0.55);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    line-height: 1;
    box-shadow: 0 10px 22px rgba(8, 20, 44, 0.18);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.complaints-hero--matched .complaints-back-link:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(229, 196, 89, 0.82);
}

@media (max-width: 640px) {
    .complaints-hero--matched .complaints-back-link {
        min-height: 38px;
        padding: 9px 14px;
        font-size: 14px;
    }
}

/* Step 19 Required stars */
.required-star {
    color: #d92d20;
    font-size: 0.72em;
    font-weight: 900;
    vertical-align: super;
    margin-inline-start: 4px;
}

.attachment-help {
    margin-top: 10px;
    color: #667085;
    font-size: 0.92rem;
    line-height: 1.7;
}

@media (max-width: 640px) {
    .attachment-help {
        font-size: 0.86rem;
    }
}
/* COMPLAINTS_PAGE_STYLES_END */

/* STEP_54_FINAL_HOME_APPROVED_CLEAN_START */
/* Final approved home page styles. Do not edit unless a new approved design change is requested. */

/* Global */
html,
body {
    overflow-x: hidden;
}

html,
body,
body * {
    font-family: Calibri, Arial, "Segoe UI", Tahoma, sans-serif !important;
}

body {
    text-rendering: optimizeLegibility;
}

/* Home header */
.header-shell {
    position: relative;
    z-index: 1;
    max-width: 490px;
    margin: 0 auto;
}

.site-header {
    position: relative;
    overflow: hidden;
    padding: 7px 0 13px;
    background:
        linear-gradient(135deg, rgba(12, 29, 60, 0.98) 0%, rgba(22, 45, 86, 0.96) 54%, rgba(10, 22, 45, 0.98) 100%);
}

.site-header::before,
.site-header::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.site-header::before {
    width: 360px;
    height: 360px;
    top: -160px;
    left: -140px;
    background: rgba(215, 178, 63, 0.14);
}

.site-header::after {
    width: 260px;
    height: 260px;
    bottom: -120px;
    right: -90px;
    background: rgba(255, 255, 255, 0.05);
}

.hero-card {
    padding: 9px 9px 13px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(4px);
}

.logo-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    max-width: min(100%, 281px);
    margin: 0 auto 9px;
    padding: 7px 9px 8px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(215, 178, 63, 0.22);
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.logo-wrap::before {
    content: none !important;
    display: none !important;
}

.main-logo {
    width: min(100%, 216px);
    max-height: 76px;
    object-fit: contain;
    object-position: center;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    filter: none !important;
}

.hero-content {
    max-width: 374px;
    margin: 0 auto;
    text-align: center;
}

.hero-content .complaints-button {
    display: none !important;
}

.site-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 5px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(215, 178, 63, 0.16);
    border: 1px solid rgba(243, 230, 183, 0.35);
    color: #f4df95;
    font-size: 0.65rem;
    font-weight: 700;
}

.site-title {
    max-width: 374px;
    margin: 0 auto;
    color: #ffffff;
    font-size: clamp(1.15rem, 2.16vw, 1.62rem);
    line-height: 1.1;
    text-wrap: balance;
}

.site-tagline {
    max-width: 346px;
    margin: 5px auto 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.70rem;
    line-height: 1.45;
}

/* Home cards layout */
.cards-section {
    padding: 16px 0 34px !important;
}

.cards-section .container {
    width: min(calc(100% - 20px), 1200px);
}

.cards-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px !important;
    align-items: stretch !important;
}

.info-card {
    position: relative;
    height: 390px !important;
    min-height: 390px !important;
    max-height: 390px !important;
    align-self: stretch !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start !important;
    overflow: hidden !important;
    padding: 10mm 14px 12px !important;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 42px rgba(12, 29, 60, 0.12);
    border-color: rgba(215, 178, 63, 0.34);
}

.info-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #0c1d3c 0%, #29405f 16%, #edf0f3 50%, #29405f 84%, #0c1d3c 100%) !important;
}

.card-number {
    display: none !important;
}

.card-head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px !important;
    text-align: center;
}

.card-title {
    width: 100%;
    margin: 0;
    color: var(--primary);
    text-align: center;
    font-size: 1.14rem;
    line-height: 1.16 !important;
}

.card-text,
.services-list,
.contact-list {
    margin: 0;
    color: var(--text);
    text-align: center;
    font-size: 0.78rem;
}

.services-list,
.contact-list {
    list-style: none;
    padding: 0;
}

.services-list li,
.contact-list li {
    position: relative;
    margin-bottom: 4px;
    padding: 7px 0;
    border-bottom: 1px dashed rgba(12, 29, 60, 0.12);
    line-height: 1.75;
    text-align: center;
}

.services-list li:last-child,
.contact-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.services-list li::before,
.contact-list li::before {
    display: none;
}

/* Shared card icons */
.card-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 9px !important;
}

.card-header-icon-badge {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(229, 196, 89, 0.18), rgba(229, 196, 89, 0.08));
    border: 2px solid rgba(214, 185, 92, 0.42);
    box-shadow: 0 14px 28px rgba(10, 24, 49, 0.10);
}

.card-header-icon-badge svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: #16366d;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.services-card-icon .card-header-icon-badge svg,
.contact-card-icon .card-header-icon-badge svg {
    fill: #16366d;
    stroke: none;
}

/* About */
#about-us .card-text-about {
    max-width: 92% !important;
    margin: 10px auto 0 !important;
    text-align: center !important;
    font-size: 0.73rem !important;
    line-height: 1.48 !important;
    font-weight: 700 !important;
}

#about-us .card-text-about .about-paragraph {
    display: block;
    margin: 0 0 7px;
    font-weight: 700 !important;
}

#about-us .card-text-about .about-paragraph:last-child {
    margin-bottom: 0;
}

/* Services */
#services .services-list {
    width: min(100%, 326px) !important;
    max-width: 100%;
    margin: 0 auto !important;
}

#services .services-list .service-item {
    display: flex !important;
    direction: rtl !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 9px !important;
    text-align: right !important;
    padding: 2px 5px !important;
    margin-bottom: 1px !important;
    line-height: 1.2 !important;
}

#services .service-icon {
    width: 27px !important;
    height: 27px !important;
    flex: 0 0 27px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    overflow: hidden !important;
}

#services .service-icon img {
    width: 27px !important;
    height: 27px !important;
    display: block !important;
    object-fit: contain !important;
    object-position: center !important;
}

#services .service-icon svg {
    display: none !important;
}

#services .service-name {
    flex: 1 1 auto !important;
    display: block !important;
    color: var(--primary) !important;
    font-weight: 700 !important;
    font-size: 0.74rem !important;
    line-height: 1.22 !important;
    text-align: right !important;
}

/* Contact */
#contact-us .contact-list-icons {
    width: min(100%, 304px) !important;
    max-width: 100%;
    margin: 0 auto !important;
    align-items: stretch !important;
}

#contact-us .contact-list-icons li:not(.complaint-link-item) {
    width: 100% !important;
    text-align: right !important;
    border-bottom-color: rgba(12, 29, 60, 0.08) !important;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
    margin-bottom: 1px !important;
    line-height: 1.18 !important;
}

#contact-us .contact-simple-link {
    display: flex !important;
    direction: rtl !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 24px !important;
    padding-inline: 10px !important;
    gap: 8px !important;
    color: var(--primary);
    font-weight: 800;
    line-height: 1.4;
    text-align: right !important;
    text-decoration: none;
}

#contact-us .contact-simple-link:hover {
    text-decoration: none !important;
    filter: brightness(1.03);
}

#contact-us .contact-icon,
#contact-us .contact-icon svg {
    width: 18px !important;
    height: 18px !important;
    flex: 0 0 18px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#contact-us .contact-icon svg {
    display: block !important;
}

#contact-us .contact-text,
#contact-us .contact-text-wrap {
    flex: 1 1 auto !important;
    text-align: right !important;
}

#contact-us .contact-text-wrap {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 1px !important;
    line-height: 1.45;
}

#contact-us .contact-text {
    display: block !important;
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
    font-weight: 800;
    text-align: right !important;
}

#contact-us .contact-subtext {
    display: block;
    margin-top: 1px !important;
    color: rgba(93, 104, 121, 0.82) !important;
    font-size: 0.60rem !important;
    font-weight: 700;
    line-height: 1.12 !important;
    text-align: right !important;
    white-space: nowrap;
}

#contact-us .map-link,
#contact-us .instagram-link,
#contact-us .snapchat-link,
#contact-us .whatsapp-link {
    justify-content: flex-start !important;
}

#contact-us .snapchat-link .contact-icon {
    width: 22px !important;
    height: 22px !important;
    flex-basis: 22px !important;
}

#contact-us .snapchat-link .snapchat-official-icon {
    width: 22px !important;
    height: 22px !important;
    display: block !important;
    border-radius: 5px;
}

#contact-us .complaint-link-item {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent !important;
    border: none !important;
    padding: 8px 0 0 !important;
    margin-top: 1px !important;
}

#contact-us .complaint-only-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 145px !important;
    padding: 6px 12px !important;
    border-radius: 12px;
    gap: 8px;
    background: linear-gradient(135deg, #0f2347 0%, #173564 100%);
    color: #ffffff;
    font-size: 0.78rem !important;
    font-weight: 800;
    box-shadow: 0 10px 18px rgba(12, 29, 60, 0.16);
    transition: transform 0.2s ease, filter 0.2s ease;
}

#contact-us .complaint-only-link:hover {
    text-decoration: none;
    transform: translateY(-1px);
    filter: brightness(1.04);
}

#contact-us .complaint-only-link::before {
    content: "";
    width: 14px !important;
    height: 14px !important;
    flex: 0 0 14px !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3Cpath d='M8 8h8'/%3E%3Cpath d='M8 12h5'/%3E%3C/svg%3E");
}

/* Media */
.media-card-clean {
    text-align: center;
}

.media-card-clean .card-head,
.media-card-clean .card-title {
    justify-content: center;
    text-align: center;
}

.media-card-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 8px !important;
}

.media-card-video-icon {
    width: 46px !important;
    height: 46px !important;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(229, 196, 89, 0.18), rgba(229, 196, 89, 0.08));
    border: 2px solid rgba(214, 185, 92, 0.48);
    box-shadow: 0 12px 24px rgba(10, 24, 49, 0.10) !important;
}

.media-card-play-symbol {
    width: 26px !important;
    height: 26px !important;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-inline-start: 2px !important;
    background: #16366d;
    color: #ffffff;
    font-size: 11px !important;
    line-height: 1;
    box-shadow: 0 6px 12px rgba(22, 54, 109, 0.16) !important;
}

.media-placeholders,
.media-placeholders.media-placeholders-clean {
    width: min(100%, 290px);
    max-width: 100%;
    margin: 24px auto 0 !important;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px !important;
}

.media-box,
.media-placeholders.media-placeholders-clean .media-box {
    width: 100%;
    min-width: 0;
    min-height: 58px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 16px;
    text-align: center;
    font-size: 0.76rem;
    font-weight: 800;
    background: linear-gradient(180deg, #fbf8ee 0%, #f2ead1 100%);
    border: 1px solid rgba(215, 178, 63, 0.5);
    color: var(--primary);
}

.media-download-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.media-download-link:hover {
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(10, 24, 49, 0.14);
    border-color: rgba(214, 185, 92, 0.58);
}

.media-download-link:focus-visible {
    outline: 3px solid rgba(22, 54, 109, 0.18);
    outline-offset: 3px;
}

.media-box-content {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.media-box-label {
    display: inline-block;
}

.media-download-icon {
    width: 21px;
    height: 21px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 54, 109, 0.10);
    color: #16366d;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    flex: 0 0 auto;
}

/* Footer */
.site-footer {
    margin-top: -18px !important;
    padding: 6px 16px 22px !important;
    background: transparent;
}

.site-footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
    transform: translateY(-8px);
}

.site-footer-line {
    margin: 0;
    color: #4c5c78;
    font-size: 0.95rem;
    line-height: 1.9;
    font-weight: 700;
}

.site-footer-line + .site-footer-line {
    margin-top: 2px;
}

.site-footer-powered {
    width: fit-content;
    margin: 8px auto 0;
    padding: 3px 10px;
    border: 1px solid rgba(215, 178, 63, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.46);
    color: rgba(76, 92, 120, 0.82);
    font-size: 0.68rem;
    line-height: 1.45;
    font-weight: 500;
    letter-spacing: 0.01em;
    direction: ltr !important;
    unicode-bidi: isolate !important;
    text-align: center !important;
}

.site-footer-powered a {
    color: inherit !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: row !important;
    gap: 3px;
    direction: ltr !important;
    unicode-bidi: isolate !important;
    text-align: center !important;
}

.site-footer-powered a:hover {
    text-decoration: none !important;
    filter: brightness(0.92);
}

.site-footer-powered a:focus-visible {
    outline: 2px solid rgba(215, 178, 63, 0.45);
    outline-offset: 3px;
    border-radius: 999px;
}

.site-footer-powered span {
    color: rgba(12, 29, 60, 0.82);
    font-weight: 700;
    direction: ltr !important;
    unicode-bidi: isolate !important;
}

/* Home responsive */
@media (max-width: 1280px) {
    .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 760px;
    }
}

@media (max-width: 900px) {
    .header-shell {
        max-width: 100%;
    }

    .logo-wrap {
        max-width: min(100%, 257px);
    }

    .main-logo {
        width: min(100%, 198px);
        max-height: 70px;
    }

    .hero-content {
        max-width: 100%;
    }

    .site-title {
        font-size: clamp(1.08rem, 4.5vw, 1.48rem);
    }

    .site-tagline {
        max-width: 100%;
        font-size: 0.68rem;
    }

    .cards-section .container {
        width: min(calc(100% - 18px), 100%);
    }

    .cards-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        gap: 12px;
        align-items: stretch !important;
    }

    .info-card {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        align-self: stretch !important;
        overflow: visible !important;
        padding-top: 7mm !important;
        padding-bottom: 12px !important;
    }

    #about-us .card-text-about {
        max-width: 94% !important;
        margin-top: 12px !important;
        font-size: 0.82rem !important;
        line-height: 1.55 !important;
    }

    #about-us .card-text-about .about-paragraph {
        margin-bottom: 8px;
    }

    #services .services-list,
    #contact-us .contact-list-icons,
    .media-placeholders.media-placeholders-clean {
        width: min(100%, 520px);
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .site-header {
        padding: 5px 0 11px;
    }

    .hero-card {
        padding: 8px 8px 12px;
        border-radius: 15px;
    }

    .logo-wrap {
        max-width: min(100%, 234px);
        margin-bottom: 7px;
        padding: 6px 8px 7px;
        border-radius: 15px;
    }

    .main-logo {
        width: min(100%, 185px);
        max-height: 67px;
    }

    .site-label {
        font-size: 0.61rem;
    }

    .site-title {
        font-size: clamp(1.00rem, 5.85vw, 1.37rem);
    }

    .site-tagline {
        font-size: 0.66rem;
    }

    .cards-section {
        padding: 20px 0 30px !important;
    }

    .cards-grid {
        max-width: 100%;
    }

    .info-card {
        padding: 5mm 12px 11px !important;
        border-radius: 16px;
    }

    .card-title {
        font-size: 1.08rem;
    }

    .card-header-icon-badge {
        width: 44px;
        height: 44px;
    }

    .card-header-icon-badge svg {
        width: 20px;
        height: 20px;
    }

    #about-us .card-text-about {
        max-width: 96% !important;
        margin-top: 10px !important;
        font-size: 0.80rem !important;
        line-height: 1.55 !important;
    }

    #services .services-list {
        width: min(100%, 340px) !important;
    }

    #services .services-list .service-item {
        gap: 8px !important;
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }

    #services .service-icon,
    #services .service-icon img {
        width: 28px !important;
        height: 28px !important;
        flex-basis: 28px !important;
    }

    #services .service-name {
        font-size: 0.80rem !important;
    }

    #contact-us .contact-list-icons {
        width: min(100%, 330px) !important;
    }

    #contact-us .contact-simple-link {
        padding-inline: 6px !important;
        gap: 8px !important;
    }

    #contact-us .contact-text {
        font-size: 0.78rem !important;
    }

    #contact-us .contact-subtext {
        font-size: 0.66rem !important;
        white-space: normal;
    }

    #contact-us .snapchat-link .contact-icon {
        width: 21px !important;
        height: 21px !important;
        flex-basis: 21px !important;
    }

    #contact-us .snapchat-link .snapchat-official-icon {
        width: 21px !important;
        height: 21px !important;
    }

    #contact-us .complaint-only-link {
        padding: 8px 13px;
        font-size: 0.82rem;
    }

    .media-card-icon-wrap {
        margin-bottom: 7px !important;
    }

    .media-card-video-icon {
        width: 44px !important;
        height: 44px !important;
    }

    .media-card-play-symbol {
        width: 24px !important;
        height: 24px !important;
        font-size: 10px !important;
        padding-inline-start: 2px !important;
    }

    #media .media-placeholders,
    #media .media-placeholders.media-placeholders-clean,
    .media-placeholders,
    .media-placeholders.media-placeholders-clean {
        margin-top: 18px !important;
        gap: 16px !important;
    }

    .media-box,
    .media-placeholders.media-placeholders-clean .media-box {
        min-height: 56px !important;
        font-size: 0.76rem;
    }

    .site-footer {
        margin-top: -12px !important;
        padding: 4px 14px 18px !important;
    }

    .site-footer-inner {
        transform: translateY(-6px);
    }

    .site-footer-line {
        font-size: 0.86rem;
        line-height: 1.8;
    }

    .site-footer-powered {
        margin-top: 7px;
        padding: 3px 9px;
        font-size: 0.64rem;
    }
}
/* STEP_54_FINAL_HOME_APPROVED_CLEAN_END */
/* STEP_56_MEDIA_DOWNLOAD_CONTENT_RIGHT_ALIGNED_START */
/* Align only the content inside media download boxes:
   download icon on the right, then text beside it from the right. */
#media .media-box {
    justify-content: flex-start !important;
}

#media .media-box-content {
    direction: rtl !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    text-align: right !important;
}

#media .media-download-icon {
    flex: 0 0 21px !important;
}

#media .media-box-label {
    flex: 0 1 auto !important;
    text-align: right !important;
}
/* STEP_56_MEDIA_DOWNLOAD_CONTENT_RIGHT_ALIGNED_END */
/* STEP_62_ABOUT_TEXT_EVEN_LINES_START */
/* Make About Us paragraph lines visually even by justifying text.
   Applies only to the About Us text, not the title or icon. */
#about-us .card-text-about {
    max-width: 88% !important;
    text-align: justify !important;
    text-align-last: center !important;
    direction: rtl !important;
    line-height: 1.62 !important;
}

#about-us .card-text-about .about-paragraph {
    display: block !important;
    text-align: justify !important;
    text-align-last: center !important;
    margin: 0 0 8px !important;
}

#about-us .card-text-about .about-paragraph:last-child {
    margin-bottom: 0 !important;
}

@media (max-width: 900px) {
    #about-us .card-text-about {
        max-width: 90% !important;
        line-height: 1.62 !important;
    }
}

@media (max-width: 640px) {
    #about-us .card-text-about {
        max-width: 91% !important;
        line-height: 1.60 !important;
    }

    #about-us .card-text-about .about-paragraph {
        margin-bottom: 8px !important;
    }
}
/* STEP_62_ABOUT_TEXT_EVEN_LINES_END */
/* STEP_67_HEADER_LOGO_FULLY_TRANSPARENT_START */
/* Make the header logo area fully transparent.
   Removes all plate/capsule/background/border/shadow around the logo.
   Logo image file stays unchanged. */

.logo-wrap {
    position: relative !important;
    isolation: auto !important;
    overflow: visible !important;
    width: fit-content !important;
    max-width: min(100%, 281px) !important;
    margin: 0 auto 9px !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.logo-wrap::before,
.logo-wrap::after {
    content: none !important;
    display: none !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.main-logo {
    position: relative !important;
    z-index: 1 !important;
    width: min(100%, 232px) !important;
    max-height: 86px !important;
    object-fit: contain !important;
    object-position: center !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    filter: none !important;
}

@media (max-width: 900px) {
    .logo-wrap {
        max-width: min(100%, 257px) !important;
        margin-bottom: 8px !important;
    }

    .main-logo {
        width: min(100%, 210px) !important;
        max-height: 78px !important;
    }
}

@media (max-width: 640px) {
    .logo-wrap {
        max-width: min(100%, 234px) !important;
        margin-bottom: 7px !important;
    }

    .main-logo {
        width: min(100%, 195px) !important;
        max-height: 72px !important;
    }
}
/* STEP_67_HEADER_LOGO_FULLY_TRANSPARENT_END */
/* STEP_68_REMOVE_HEADER_HERO_CARD_LAYER_START */
/* Remove the transparent hero-card layer around the logo and header text.
   Keeps the logo, badge, title, tagline, and header background unchanged. */
.hero-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-radius: 0 !important;
}

.hero-card::before,
.hero-card::after {
    content: none !important;
    display: none !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}
/* STEP_68_REMOVE_HEADER_HERO_CARD_LAYER_END */
/* STEP_69_SHRINK_HEADER_30_PERCENT_START */
/* Shrink the whole header visual area by about 30%.
   Applies only to header sizing/spacing, not cards/footer/complaints page. */

.site-header {
    padding: 4px 0 9px !important;
}

.header-shell {
    max-width: 343px !important;
}

.hero-card {
    padding: 6px 6px 9px !important;
}

.logo-wrap {
    max-width: min(100%, 197px) !important;
    margin: 0 auto 6px !important;
    padding: 0 !important;
}

.main-logo {
    width: min(100%, 162px) !important;
    max-height: 60px !important;
}

.site-label {
    margin: 0 0 4px !important;
    padding: 3px 7px !important;
    font-size: 0.52rem !important;
    line-height: 1.25 !important;
}

.site-title {
    max-width: 262px !important;
    font-size: clamp(0.92rem, 1.55vw, 1.14rem) !important;
    line-height: 1.08 !important;
}

.site-tagline {
    max-width: 242px !important;
    margin-top: 4px !important;
    font-size: 0.52rem !important;
    line-height: 1.35 !important;
}

@media (max-width: 900px) {
    .site-header {
        padding: 4px 0 8px !important;
    }

    .header-shell {
        max-width: 100% !important;
    }

    .hero-card {
        padding: 6px 6px 8px !important;
    }

    .logo-wrap {
        max-width: min(100%, 180px) !important;
        margin-bottom: 6px !important;
    }

    .main-logo {
        width: min(100%, 147px) !important;
        max-height: 55px !important;
    }

    .site-label {
        font-size: 0.50rem !important;
        padding: 3px 7px !important;
    }

    .site-title {
        font-size: clamp(0.88rem, 3.15vw, 1.04rem) !important;
    }

    .site-tagline {
        font-size: 0.50rem !important;
    }
}

@media (max-width: 640px) {
    .site-header {
        padding: 4px 0 8px !important;
    }

    .hero-card {
        padding: 5px 5px 8px !important;
    }

    .logo-wrap {
        max-width: min(100%, 164px) !important;
        margin-bottom: 5px !important;
    }

    .main-logo {
        width: min(100%, 137px) !important;
        max-height: 50px !important;
    }

    .site-label {
        font-size: 0.49rem !important;
    }

    .site-title {
        font-size: clamp(0.86rem, 4.1vw, 0.98rem) !important;
    }

    .site-tagline {
        font-size: 0.49rem !important;
        line-height: 1.32 !important;
    }
}
/* STEP_69_SHRINK_HEADER_30_PERCENT_END */
/* STEP_70_SHRINK_HEADER_ANOTHER_10_PERCENT_START */
/* Shrink the header by another 10% after Step 69.
   Applies only to header sizing/spacing. */

.site-header {
    padding: 3px 0 8px !important;
}

.header-shell {
    max-width: 309px !important;
}

.hero-card {
    padding: 5px 5px 8px !important;
}

.logo-wrap {
    max-width: min(100%, 177px) !important;
    margin: 0 auto 5px !important;
    padding: 0 !important;
}

.main-logo {
    width: min(100%, 146px) !important;
    max-height: 54px !important;
}

.site-label {
    margin: 0 0 3px !important;
    padding: 3px 6px !important;
    font-size: 0.47rem !important;
    line-height: 1.22 !important;
}

.site-title {
    max-width: 236px !important;
    font-size: clamp(0.83rem, 1.40vw, 1.03rem) !important;
    line-height: 1.06 !important;
}

.site-tagline {
    max-width: 218px !important;
    margin-top: 3px !important;
    font-size: 0.47rem !important;
    line-height: 1.30 !important;
}

@media (max-width: 900px) {
    .site-header {
        padding: 3px 0 7px !important;
    }

    .header-shell {
        max-width: 100% !important;
    }

    .hero-card {
        padding: 5px 5px 7px !important;
    }

    .logo-wrap {
        max-width: min(100%, 162px) !important;
        margin-bottom: 5px !important;
    }

    .main-logo {
        width: min(100%, 132px) !important;
        max-height: 50px !important;
    }

    .site-label {
        font-size: 0.45rem !important;
        padding: 3px 6px !important;
    }

    .site-title {
        font-size: clamp(0.79rem, 2.84vw, 0.94rem) !important;
    }

    .site-tagline {
        font-size: 0.45rem !important;
    }
}

@media (max-width: 640px) {
    .site-header {
        padding: 3px 0 7px !important;
    }

    .hero-card {
        padding: 5px 5px 7px !important;
    }

    .logo-wrap {
        max-width: min(100%, 148px) !important;
        margin-bottom: 5px !important;
    }

    .main-logo {
        width: min(100%, 123px) !important;
        max-height: 45px !important;
    }

    .site-label {
        font-size: 0.44rem !important;
    }

    .site-title {
        font-size: clamp(0.77rem, 3.70vw, 0.88rem) !important;
    }

    .site-tagline {
        font-size: 0.44rem !important;
        line-height: 1.28 !important;
    }
}
/* STEP_70_SHRINK_HEADER_ANOTHER_10_PERCENT_END */

/* STEP_71_INCREASE_HEADER_LOGO_5_PERCENT_START */
/* Increase only the home header logo by 5%.
   Backup and rollback are handled by Step_71 PowerShell script. */

.logo-wrap {
    max-width: min(100%, 186px) !important;
}

.main-logo {
    width: min(100%, 153px) !important;
    max-height: 57px !important;
}

@media (max-width: 900px) {
    .logo-wrap {
        max-width: min(100%, 170px) !important;
    }

    .main-logo {
        width: min(100%, 139px) !important;
        max-height: 53px !important;
    }
}

@media (max-width: 640px) {
    .logo-wrap {
        max-width: min(100%, 155px) !important;
    }

    .main-logo {
        width: min(100%, 129px) !important;
        max-height: 47px !important;
    }
}
/* STEP_71_INCREASE_HEADER_LOGO_5_PERCENT_END */

/* STEP_72_INCREASE_FULL_HEADER_10_PERCENT_START */
/* Increase the full home header visual area by about 10%.
   This keeps the transparent logo treatment and approved layout behavior unchanged.
   Backup and rollback are handled by Step_72 PowerShell script. */

.site-header {
    padding: 4px 0 9px !important;
}

.header-shell {
    max-width: 340px !important;
}

.hero-card {
    padding: 6px 6px 9px !important;
}

.logo-wrap {
    max-width: min(100%, 205px) !important;
    margin: 0 auto 6px !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.main-logo {
    width: min(100%, 168px) !important;
    max-height: 63px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    filter: none !important;
}

.site-label {
    margin: 0 0 4px !important;
    padding: 4px 7px !important;
    font-size: 0.52rem !important;
    line-height: 1.25 !important;
}

.site-title {
    max-width: 260px !important;
    font-size: clamp(0.91rem, 1.54vw, 1.13rem) !important;
    line-height: 1.08 !important;
}

.site-tagline {
    max-width: 240px !important;
    margin-top: 4px !important;
    font-size: 0.52rem !important;
    line-height: 1.34 !important;
}

@media (max-width: 900px) {
    .site-header {
        padding: 4px 0 8px !important;
    }

    .header-shell {
        max-width: 100% !important;
    }

    .hero-card {
        padding: 6px 6px 8px !important;
    }

    .logo-wrap {
        max-width: min(100%, 187px) !important;
        margin-bottom: 6px !important;
    }

    .main-logo {
        width: min(100%, 153px) !important;
        max-height: 58px !important;
    }

    .site-label {
        font-size: 0.50rem !important;
        padding: 4px 7px !important;
    }

    .site-title {
        font-size: clamp(0.87rem, 3.12vw, 1.03rem) !important;
    }

    .site-tagline {
        font-size: 0.50rem !important;
        line-height: 1.32 !important;
    }
}

@media (max-width: 640px) {
    .site-header {
        padding: 4px 0 8px !important;
    }

    .hero-card {
        padding: 6px 6px 8px !important;
    }

    .logo-wrap {
        max-width: min(100%, 171px) !important;
        margin-bottom: 6px !important;
    }

    .main-logo {
        width: min(100%, 142px) !important;
        max-height: 52px !important;
    }

    .site-label {
        font-size: 0.48rem !important;
    }

    .site-title {
        font-size: clamp(0.85rem, 4.07vw, 0.97rem) !important;
    }

    .site-tagline {
        font-size: 0.48rem !important;
        line-height: 1.31 !important;
    }
}
/* STEP_72_INCREASE_FULL_HEADER_10_PERCENT_END */

/* STEP_73_ADD_SUBTLE_GOLD_HEADER_SHEEN_START */
/* Add a very subtle gold sheen to the home header.
   Keeps the same navy color identity and the approved transparent logo behavior.
   Backup and rollback are handled by Step_73 PowerShell script. */

.site-header {
    border-bottom: 1px solid rgba(215, 178, 63, 0.26) !important;
    box-shadow:
        inset 0 -1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -18px 32px rgba(215, 178, 63, 0.035),
        0 12px 34px rgba(12, 29, 60, 0.08) !important;
    background:
        linear-gradient(90deg, transparent 0%, rgba(215, 178, 63, 0.00) 18%, rgba(215, 178, 63, 0.16) 50%, rgba(215, 178, 63, 0.00) 82%, transparent 100%) center 100% / 680px 2px no-repeat,
        radial-gradient(circle at 50% 10%, rgba(215, 178, 63, 0.075), transparent 22%),
        radial-gradient(circle at top left, rgba(215, 178, 63, 0.10), transparent 22%),
        linear-gradient(135deg, rgba(12, 29, 60, 0.98) 0%, rgba(22, 45, 86, 0.96) 54%, rgba(10, 22, 45, 0.98) 100%) !important;
}

.site-header::before {
    background: rgba(215, 178, 63, 0.105) !important;
}

.site-header::after {
    background: rgba(255, 255, 255, 0.045) !important;
}

@media (max-width: 900px) {
    .site-header {
        background:
            linear-gradient(90deg, transparent 0%, rgba(215, 178, 63, 0.00) 16%, rgba(215, 178, 63, 0.14) 50%, rgba(215, 178, 63, 0.00) 84%, transparent 100%) center 100% / 440px 2px no-repeat,
            radial-gradient(circle at 50% 10%, rgba(215, 178, 63, 0.060), transparent 24%),
            radial-gradient(circle at top left, rgba(215, 178, 63, 0.085), transparent 24%),
            linear-gradient(135deg, rgba(12, 29, 60, 0.98) 0%, rgba(22, 45, 86, 0.96) 54%, rgba(10, 22, 45, 0.98) 100%) !important;
    }
}

@media (max-width: 640px) {
    .site-header {
        background:
            linear-gradient(90deg, transparent 0%, rgba(215, 178, 63, 0.00) 14%, rgba(215, 178, 63, 0.13) 50%, rgba(215, 178, 63, 0.00) 86%, transparent 100%) center 100% / 310px 2px no-repeat,
            radial-gradient(circle at 50% 12%, rgba(215, 178, 63, 0.055), transparent 26%),
            radial-gradient(circle at top left, rgba(215, 178, 63, 0.080), transparent 26%),
            linear-gradient(135deg, rgba(12, 29, 60, 0.98) 0%, rgba(22, 45, 86, 0.96) 54%, rgba(10, 22, 45, 0.98) 100%) !important;
    }
}
/* STEP_73_ADD_SUBTLE_GOLD_HEADER_SHEEN_END */

/* STEP_74_MAKE_HEADER_GOLD_LINE_CLEARER_START */
/* Make the gold line/sheen inside the home header slightly clearer.
   Keeps the same navy color identity and transparent logo behavior.
   Backup and rollback are handled by Step_74 PowerShell script. */

.site-header {
    border-bottom: 1px solid rgba(215, 178, 63, 0.34) !important;
    box-shadow:
        inset 0 -1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -20px 34px rgba(215, 178, 63, 0.045),
        0 12px 34px rgba(12, 29, 60, 0.08) !important;
    background:
        linear-gradient(90deg,
            transparent 0%,
            rgba(215, 178, 63, 0.00) 16%,
            rgba(215, 178, 63, 0.10) 34%,
            rgba(241, 223, 149, 0.34) 50%,
            rgba(215, 178, 63, 0.10) 66%,
            rgba(215, 178, 63, 0.00) 84%,
            transparent 100%) center calc(100% - 1px) / 760px 3px no-repeat,
        radial-gradient(circle at 50% 10%, rgba(215, 178, 63, 0.080), transparent 22%),
        radial-gradient(circle at top left, rgba(215, 178, 63, 0.10), transparent 22%),
        linear-gradient(135deg, rgba(12, 29, 60, 0.98) 0%, rgba(22, 45, 86, 0.96) 54%, rgba(10, 22, 45, 0.98) 100%) !important;
}

@media (max-width: 900px) {
    .site-header {
        background:
            linear-gradient(90deg,
                transparent 0%,
                rgba(215, 178, 63, 0.00) 14%,
                rgba(215, 178, 63, 0.09) 34%,
                rgba(241, 223, 149, 0.30) 50%,
                rgba(215, 178, 63, 0.09) 66%,
                rgba(215, 178, 63, 0.00) 86%,
                transparent 100%) center calc(100% - 1px) / 500px 3px no-repeat,
            radial-gradient(circle at 50% 10%, rgba(215, 178, 63, 0.065), transparent 24%),
            radial-gradient(circle at top left, rgba(215, 178, 63, 0.085), transparent 24%),
            linear-gradient(135deg, rgba(12, 29, 60, 0.98) 0%, rgba(22, 45, 86, 0.96) 54%, rgba(10, 22, 45, 0.98) 100%) !important;
    }
}

@media (max-width: 640px) {
    .site-header {
        background:
            linear-gradient(90deg,
                transparent 0%,
                rgba(215, 178, 63, 0.00) 12%,
                rgba(215, 178, 63, 0.08) 34%,
                rgba(241, 223, 149, 0.27) 50%,
                rgba(215, 178, 63, 0.08) 66%,
                rgba(215, 178, 63, 0.00) 88%,
                transparent 100%) center calc(100% - 1px) / 340px 2px no-repeat,
            radial-gradient(circle at 50% 12%, rgba(215, 178, 63, 0.058), transparent 26%),
            radial-gradient(circle at top left, rgba(215, 178, 63, 0.080), transparent 26%),
            linear-gradient(135deg, rgba(12, 29, 60, 0.98) 0%, rgba(22, 45, 86, 0.96) 54%, rgba(10, 22, 45, 0.98) 100%) !important;
    }
}
/* STEP_74_MAKE_HEADER_GOLD_LINE_CLEARER_END */

/* STEP_76_ADD_SOFT_NAVY_WAVES_ONLY_HEADER_START */
/* Add soft navy waves only.
   No spotlight behind the logo/title.
   Keeps the navy identity, subtle gold accent, and transparent logo behavior.
   Backup and rollback are handled by Step_76 PowerShell script. */

.site-header {
    isolation: isolate !important;
    border-bottom: 1px solid rgba(215, 178, 63, 0.34) !important;
    box-shadow:
        inset 0 -1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -20px 34px rgba(215, 178, 63, 0.038),
        0 12px 34px rgba(12, 29, 60, 0.08) !important;
    background:
        linear-gradient(90deg,
            transparent 0%,
            rgba(215, 178, 63, 0.00) 16%,
            rgba(215, 178, 63, 0.10) 34%,
            rgba(241, 223, 149, 0.34) 50%,
            rgba(215, 178, 63, 0.10) 66%,
            rgba(215, 178, 63, 0.00) 84%,
            transparent 100%) center calc(100% - 1px) / 760px 3px no-repeat,
        radial-gradient(ellipse at 12% 92%, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.000) 48%),
        radial-gradient(ellipse at 88% 86%, rgba(215, 178, 63, 0.050) 0%, rgba(215, 178, 63, 0.000) 46%),
        linear-gradient(135deg, rgba(12, 29, 60, 0.99) 0%, rgba(22, 45, 86, 0.97) 54%, rgba(10, 22, 45, 0.99) 100%) !important;
}

.site-header::before,
.site-header::after {
    content: "" !important;
    position: absolute !important;
    display: block !important;
    pointer-events: none !important;
    z-index: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.site-header::before {
    left: -12% !important;
    right: -12% !important;
    bottom: -76px !important;
    width: auto !important;
    height: 148px !important;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0 !important;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(215, 178, 63, 0.105) 0%, rgba(215, 178, 63, 0.038) 46%, rgba(215, 178, 63, 0.000) 72%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.000), rgba(255, 255, 255, 0.040), rgba(255, 255, 255, 0.000)) !important;
    opacity: 0.76 !important;
    transform: rotate(-1.15deg) !important;
}

.site-header::after {
    left: -8% !important;
    right: -8% !important;
    bottom: -104px !important;
    top: auto !important;
    width: auto !important;
    height: 172px !important;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0 !important;
    background:
        radial-gradient(ellipse at 34% 0%, rgba(255, 255, 255, 0.038) 0%, rgba(255, 255, 255, 0.000) 62%),
        radial-gradient(ellipse at 72% 0%, rgba(215, 178, 63, 0.048) 0%, rgba(215, 178, 63, 0.000) 58%) !important;
    opacity: 0.58 !important;
    transform: rotate(1.25deg) !important;
    filter: none !important;
}

.header-shell {
    position: relative !important;
    z-index: 2 !important;
}

@media (max-width: 900px) {
    .site-header {
        background:
            linear-gradient(90deg,
                transparent 0%,
                rgba(215, 178, 63, 0.00) 14%,
                rgba(215, 178, 63, 0.09) 34%,
                rgba(241, 223, 149, 0.30) 50%,
                rgba(215, 178, 63, 0.09) 66%,
                rgba(215, 178, 63, 0.00) 86%,
                transparent 100%) center calc(100% - 1px) / 500px 3px no-repeat,
            radial-gradient(ellipse at 12% 92%, rgba(255, 255, 255, 0.038) 0%, rgba(255, 255, 255, 0.000) 50%),
            radial-gradient(ellipse at 88% 86%, rgba(215, 178, 63, 0.044) 0%, rgba(215, 178, 63, 0.000) 48%),
            linear-gradient(135deg, rgba(12, 29, 60, 0.99) 0%, rgba(22, 45, 86, 0.97) 54%, rgba(10, 22, 45, 0.99) 100%) !important;
    }

    .site-header::before {
        bottom: -66px !important;
        height: 130px !important;
        opacity: 0.68 !important;
    }

    .site-header::after {
        bottom: -92px !important;
        height: 150px !important;
        opacity: 0.50 !important;
    }
}

@media (max-width: 640px) {
    .site-header {
        background:
            linear-gradient(90deg,
                transparent 0%,
                rgba(215, 178, 63, 0.00) 12%,
                rgba(215, 178, 63, 0.08) 34%,
                rgba(241, 223, 149, 0.27) 50%,
                rgba(215, 178, 63, 0.08) 66%,
                rgba(215, 178, 63, 0.00) 88%,
                transparent 100%) center calc(100% - 1px) / 340px 2px no-repeat,
            radial-gradient(ellipse at 12% 92%, rgba(255, 255, 255, 0.032) 0%, rgba(255, 255, 255, 0.000) 52%),
            radial-gradient(ellipse at 88% 86%, rgba(215, 178, 63, 0.038) 0%, rgba(215, 178, 63, 0.000) 50%),
            linear-gradient(135deg, rgba(12, 29, 60, 0.99) 0%, rgba(22, 45, 86, 0.97) 54%, rgba(10, 22, 45, 0.99) 100%) !important;
    }

    .site-header::before {
        bottom: -54px !important;
        height: 108px !important;
        opacity: 0.58 !important;
    }

    .site-header::after {
        bottom: -76px !important;
        height: 126px !important;
        opacity: 0.44 !important;
    }
}
/* STEP_76_ADD_SOFT_NAVY_WAVES_ONLY_HEADER_END */

/* STEP_78_ADD_SUBTLE_GRAIN_HEADER_START */
/* Add a very subtle grain / shimmer texture over the existing navy header waves.
   No spotlight behind the logo/title.
   Keeps the navy identity, subtle gold accent, and transparent logo behavior.
   Backup and rollback are handled by Step_78 PowerShell script. */

.site-header {
    background:
        linear-gradient(90deg,
            transparent 0%,
            rgba(215, 178, 63, 0.00) 16%,
            rgba(215, 178, 63, 0.10) 34%,
            rgba(241, 223, 149, 0.34) 50%,
            rgba(215, 178, 63, 0.10) 66%,
            rgba(215, 178, 63, 0.00) 84%,
            transparent 100%) center calc(100% - 1px) / 760px 3px no-repeat,
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.020) 0.65px, transparent 0.95px) 0 0 / 12px 12px repeat,
        radial-gradient(circle at 2px 2px, rgba(215, 178, 63, 0.014) 0.60px, transparent 0.92px) 5px 4px / 16px 16px repeat,
        radial-gradient(circle at 1.5px 1.5px, rgba(255, 255, 255, 0.012) 0.55px, transparent 0.88px) 2px 7px / 18px 18px repeat,
        radial-gradient(ellipse at 12% 92%, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.000) 48%),
        radial-gradient(ellipse at 88% 86%, rgba(215, 178, 63, 0.050) 0%, rgba(215, 178, 63, 0.000) 46%),
        linear-gradient(135deg, rgba(12, 29, 60, 0.99) 0%, rgba(22, 45, 86, 0.97) 54%, rgba(10, 22, 45, 0.99) 100%) !important;
}

@media (max-width: 900px) {
    .site-header {
        background:
            linear-gradient(90deg,
                transparent 0%,
                rgba(215, 178, 63, 0.00) 14%,
                rgba(215, 178, 63, 0.09) 34%,
                rgba(241, 223, 149, 0.30) 50%,
                rgba(215, 178, 63, 0.09) 66%,
                rgba(215, 178, 63, 0.00) 86%,
                transparent 100%) center calc(100% - 1px) / 500px 3px no-repeat,
            radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.018) 0.60px, transparent 0.92px) 0 0 / 11px 11px repeat,
            radial-gradient(circle at 2px 2px, rgba(215, 178, 63, 0.013) 0.56px, transparent 0.90px) 5px 4px / 15px 15px repeat,
            radial-gradient(circle at 1.5px 1.5px, rgba(255, 255, 255, 0.010) 0.52px, transparent 0.86px) 2px 7px / 17px 17px repeat,
            radial-gradient(ellipse at 12% 92%, rgba(255, 255, 255, 0.038) 0%, rgba(255, 255, 255, 0.000) 50%),
            radial-gradient(ellipse at 88% 86%, rgba(215, 178, 63, 0.044) 0%, rgba(215, 178, 63, 0.000) 48%),
            linear-gradient(135deg, rgba(12, 29, 60, 0.99) 0%, rgba(22, 45, 86, 0.97) 54%, rgba(10, 22, 45, 0.99) 100%) !important;
    }
}

@media (max-width: 640px) {
    .site-header {
        background:
            linear-gradient(90deg,
                transparent 0%,
                rgba(215, 178, 63, 0.00) 12%,
                rgba(215, 178, 63, 0.08) 34%,
                rgba(241, 223, 149, 0.27) 50%,
                rgba(215, 178, 63, 0.08) 66%,
                rgba(215, 178, 63, 0.00) 88%,
                transparent 100%) center calc(100% - 1px) / 340px 2px no-repeat,
            radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.016) 0.56px, transparent 0.88px) 0 0 / 10px 10px repeat,
            radial-gradient(circle at 2px 2px, rgba(215, 178, 63, 0.011) 0.52px, transparent 0.84px) 4px 3px / 13px 13px repeat,
            radial-gradient(circle at 1.5px 1.5px, rgba(255, 255, 255, 0.009) 0.48px, transparent 0.82px) 2px 6px / 15px 15px repeat,
            radial-gradient(ellipse at 12% 92%, rgba(255, 255, 255, 0.032) 0%, rgba(255, 255, 255, 0.000) 52%),
            radial-gradient(ellipse at 88% 86%, rgba(215, 178, 63, 0.038) 0%, rgba(215, 178, 63, 0.000) 50%),
            linear-gradient(135deg, rgba(12, 29, 60, 0.99) 0%, rgba(22, 45, 86, 0.97) 54%, rgba(10, 22, 45, 0.99) 100%) !important;
    }
}
/* STEP_78_ADD_SUBTLE_GRAIN_HEADER_END */

/* STEP_79_ADD_SUBTLE_GEOMETRIC_PATTERN_HEADER_START */
/* Add a very subtle geometric pattern over the existing navy header waves + grain.
   No spotlight behind the logo/title.
   Keeps the navy identity, subtle gold accent, and transparent logo behavior.
   Backup and rollback are handled by Step_79 PowerShell script. */

.site-header {
    background:
        linear-gradient(90deg,
            transparent 0%,
            rgba(215, 178, 63, 0.00) 16%,
            rgba(215, 178, 63, 0.10) 34%,
            rgba(241, 223, 149, 0.34) 50%,
            rgba(215, 178, 63, 0.10) 66%,
            rgba(215, 178, 63, 0.00) 84%,
            transparent 100%) center calc(100% - 1px) / 760px 3px no-repeat,
        repeating-linear-gradient(60deg,
            transparent 0 24px,
            rgba(255, 255, 255, 0.018) 24px 25px,
            transparent 25px 48px),
        repeating-linear-gradient(-60deg,
            transparent 0 24px,
            rgba(215, 178, 63, 0.015) 24px 25px,
            transparent 25px 48px),
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.020) 0.65px, transparent 0.95px) 0 0 / 12px 12px repeat,
        radial-gradient(circle at 2px 2px, rgba(215, 178, 63, 0.014) 0.60px, transparent 0.92px) 5px 4px / 16px 16px repeat,
        radial-gradient(circle at 1.5px 1.5px, rgba(255, 255, 255, 0.012) 0.55px, transparent 0.88px) 2px 7px / 18px 18px repeat,
        radial-gradient(ellipse at 12% 92%, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.000) 48%),
        radial-gradient(ellipse at 88% 86%, rgba(215, 178, 63, 0.050) 0%, rgba(215, 178, 63, 0.000) 46%),
        linear-gradient(135deg, rgba(12, 29, 60, 0.99) 0%, rgba(22, 45, 86, 0.97) 54%, rgba(10, 22, 45, 0.99) 100%) !important;
}

@media (max-width: 900px) {
    .site-header {
        background:
            linear-gradient(90deg,
                transparent 0%,
                rgba(215, 178, 63, 0.00) 14%,
                rgba(215, 178, 63, 0.09) 34%,
                rgba(241, 223, 149, 0.30) 50%,
                rgba(215, 178, 63, 0.09) 66%,
                rgba(215, 178, 63, 0.00) 86%,
                transparent 100%) center calc(100% - 1px) / 500px 3px no-repeat,
            repeating-linear-gradient(60deg,
                transparent 0 21px,
                rgba(255, 255, 255, 0.016) 21px 22px,
                transparent 22px 42px),
            repeating-linear-gradient(-60deg,
                transparent 0 21px,
                rgba(215, 178, 63, 0.013) 21px 22px,
                transparent 22px 42px),
            radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.018) 0.60px, transparent 0.92px) 0 0 / 11px 11px repeat,
            radial-gradient(circle at 2px 2px, rgba(215, 178, 63, 0.013) 0.56px, transparent 0.90px) 5px 4px / 15px 15px repeat,
            radial-gradient(circle at 1.5px 1.5px, rgba(255, 255, 255, 0.010) 0.52px, transparent 0.86px) 2px 7px / 17px 17px repeat,
            radial-gradient(ellipse at 12% 92%, rgba(255, 255, 255, 0.038) 0%, rgba(255, 255, 255, 0.000) 50%),
            radial-gradient(ellipse at 88% 86%, rgba(215, 178, 63, 0.044) 0%, rgba(215, 178, 63, 0.000) 48%),
            linear-gradient(135deg, rgba(12, 29, 60, 0.99) 0%, rgba(22, 45, 86, 0.97) 54%, rgba(10, 22, 45, 0.99) 100%) !important;
    }
}

@media (max-width: 640px) {
    .site-header {
        background:
            linear-gradient(90deg,
                transparent 0%,
                rgba(215, 178, 63, 0.00) 12%,
                rgba(215, 178, 63, 0.08) 34%,
                rgba(241, 223, 149, 0.27) 50%,
                rgba(215, 178, 63, 0.08) 66%,
                rgba(215, 178, 63, 0.00) 88%,
                transparent 100%) center calc(100% - 1px) / 340px 2px no-repeat,
            repeating-linear-gradient(60deg,
                transparent 0 18px,
                rgba(255, 255, 255, 0.014) 18px 19px,
                transparent 19px 36px),
            repeating-linear-gradient(-60deg,
                transparent 0 18px,
                rgba(215, 178, 63, 0.011) 18px 19px,
                transparent 19px 36px),
            radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.016) 0.56px, transparent 0.88px) 0 0 / 10px 10px repeat,
            radial-gradient(circle at 2px 2px, rgba(215, 178, 63, 0.011) 0.52px, transparent 0.84px) 4px 3px / 13px 13px repeat,
            radial-gradient(circle at 1.5px 1.5px, rgba(255, 255, 255, 0.009) 0.48px, transparent 0.82px) 2px 6px / 15px 15px repeat,
            radial-gradient(ellipse at 12% 92%, rgba(255, 255, 255, 0.032) 0%, rgba(255, 255, 255, 0.000) 52%),
            radial-gradient(ellipse at 88% 86%, rgba(215, 178, 63, 0.038) 0%, rgba(215, 178, 63, 0.000) 50%),
            linear-gradient(135deg, rgba(12, 29, 60, 0.99) 0%, rgba(22, 45, 86, 0.97) 54%, rgba(10, 22, 45, 0.99) 100%) !important;
    }
}
/* STEP_79_ADD_SUBTLE_GEOMETRIC_PATTERN_HEADER_END */

/* STEP_80_RIGHT_ALIGN_ABOUT_TEXT_START */
/* Right-align only the About Us body text.
   Keeps title/icon centered and preserves spacing, width, font size, and line height.
   Backup and rollback are handled by Step_80 PowerShell script. */

#about-us .card-text-about {
    text-align: right !important;
    text-align-last: right !important;
    direction: rtl !important;
}

#about-us .card-text-about .about-paragraph {
    text-align: right !important;
    text-align-last: right !important;
    direction: rtl !important;
}
/* STEP_80_RIGHT_ALIGN_ABOUT_TEXT_END */

/* STEP_81_JUSTIFY_ABOUT_TEXT_EVEN_LINES_START */
/* Make only the About Us body text visually even.
   The text is justified while the last line of each paragraph stays right-aligned.
   Keeps title/icon centered and preserves the current card layout.
   Backup and rollback are handled by Step_81 PowerShell script. */

#about-us .card-text-about {
    text-align: justify !important;
    text-align-last: right !important;
    text-justify: inter-word !important;
    direction: rtl !important;
}

#about-us .card-text-about .about-paragraph {
    display: block !important;
    text-align: justify !important;
    text-align-last: right !important;
    text-justify: inter-word !important;
    direction: rtl !important;
}
/* STEP_81_JUSTIFY_ABOUT_TEXT_EVEN_LINES_END */

/* STEP_82_MATCH_COMPLAINTS_HEADER_TO_HOME_HEADER_START */
/* Make complaints page header match the approved compact home header.
   Keeps complaints form/content untouched.
   Backup and rollback are handled by Step_82 PowerShell script. */

.complaints-page {
    padding-top: 0 !important;
}

.complaints-shell {
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    overflow: visible !important;
}

.complaints-hero,
.complaints-hero.complaints-hero--matched {
    position: relative !important;
    overflow: hidden !important;
    min-height: auto !important;
    padding: 3px 0 8px !important;
    border-radius: 0 !important;
    color: #ffffff !important;
    border-bottom: 1px solid rgba(215, 178, 63, 0.34) !important;
    box-shadow:
        inset 0 -1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -20px 34px rgba(215, 178, 63, 0.038),
        0 12px 34px rgba(12, 29, 60, 0.08) !important;
    background:
        linear-gradient(90deg,
            transparent 0%,
            rgba(215, 178, 63, 0.00) 16%,
            rgba(215, 178, 63, 0.10) 34%,
            rgba(241, 223, 149, 0.34) 50%,
            rgba(215, 178, 63, 0.10) 66%,
            rgba(215, 178, 63, 0.00) 84%,
            transparent 100%) center calc(100% - 1px) / 760px 3px no-repeat,
        radial-gradient(ellipse at 12% 92%, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.000) 48%),
        radial-gradient(ellipse at 88% 86%, rgba(215, 178, 63, 0.050) 0%, rgba(215, 178, 63, 0.000) 46%),
        linear-gradient(135deg, rgba(12, 29, 60, 0.99) 0%, rgba(22, 45, 86, 0.97) 54%, rgba(10, 22, 45, 0.99) 100%) !important;
}

.complaints-hero::before,
.complaints-hero::after,
.complaints-hero.complaints-hero--matched::before,
.complaints-hero.complaints-hero--matched::after {
    content: "" !important;
    position: absolute !important;
    display: block !important;
    pointer-events: none !important;
    z-index: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.complaints-hero::before,
.complaints-hero.complaints-hero--matched::before {
    left: -12% !important;
    right: -12% !important;
    bottom: -76px !important;
    width: auto !important;
    height: 148px !important;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0 !important;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(215, 178, 63, 0.105) 0%, rgba(215, 178, 63, 0.038) 46%, rgba(215, 178, 63, 0.000) 72%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.000), rgba(255, 255, 255, 0.040), rgba(255, 255, 255, 0.000)) !important;
    opacity: 0.76 !important;
    transform: rotate(-1.15deg) !important;
}

.complaints-hero::after,
.complaints-hero.complaints-hero--matched::after {
    left: -8% !important;
    right: -8% !important;
    bottom: -104px !important;
    top: auto !important;
    width: auto !important;
    height: 172px !important;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0 !important;
    background:
        radial-gradient(ellipse at 34% 0%, rgba(255, 255, 255, 0.038) 0%, rgba(255, 255, 255, 0.000) 62%),
        radial-gradient(ellipse at 72% 0%, rgba(215, 178, 63, 0.048) 0%, rgba(215, 178, 63, 0.000) 58%) !important;
    opacity: 0.58 !important;
    transform: rotate(1.25deg) !important;
    filter: none !important;
}

.complaints-topbar,
.complaints-hero--matched .complaints-topbar {
    position: relative !important;
    z-index: 2 !important;
    width: min(calc(100% - 32px), 1180px) !important;
    margin: 0 auto 2px !important;
    min-height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
}

.complaints-back-link,
.complaints-hero--matched .complaints-back-link {
    min-height: 30px !important;
    padding: 6px 12px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(214, 185, 92, 0.55) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 22px rgba(8, 20, 44, 0.18) !important;
    font-size: 0.72rem !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    text-decoration: none !important;
}

.complaints-back-link:hover,
.complaints-hero--matched .complaints-back-link:hover {
    transform: translateY(-1px) !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(229, 196, 89, 0.82) !important;
    text-decoration: none !important;
}

.complaints-logo-shell {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: fit-content !important;
    max-width: min(100%, 177px) !important;
    margin: 0 auto 5px !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.complaints-logo-home-style,
.complaints-logo-transparent {
    width: fit-content !important;
    max-width: min(100%, 177px) !important;
    margin: 0 auto 5px !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.complaints-logo-img,
.complaints-logo,
.complaints-logo-home-style .complaints-logo-img {
    display: block !important;
    width: min(100%, 146px) !important;
    max-width: 146px !important;
    max-height: 54px !important;
    object-fit: contain !important;
    object-position: center !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    filter: none !important;
}

.complaints-hero-copy,
.complaints-hero-copy--matched {
    position: relative !important;
    z-index: 2 !important;
    max-width: 309px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.complaints-pill,
.complaints-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 0 3px !important;
    padding: 3px 6px !important;
    border-radius: 999px !important;
    background: rgba(215, 178, 63, 0.16) !important;
    border: 1px solid rgba(243, 230, 183, 0.35) !important;
    color: #f4df95 !important;
    font-size: 0.47rem !important;
    line-height: 1.22 !important;
    font-weight: 700 !important;
}

.complaints-hero-copy h1,
.complaints-hero-copy--matched h1,
.complaints-header h1 {
    max-width: 236px !important;
    margin: 0 auto !important;
    color: #ffffff !important;
    font-size: clamp(0.83rem, 1.40vw, 1.03rem) !important;
    line-height: 1.06 !important;
    font-weight: 800 !important;
    text-align: center !important;
}

.complaints-hero-copy p,
.complaints-hero-copy--matched p,
.complaints-header p {
    max-width: 218px !important;
    margin: 3px auto 0 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.47rem !important;
    line-height: 1.30 !important;
    font-weight: 700 !important;
    text-align: center !important;
}

.complaints-form-card {
    width: min(calc(100% - 32px), 1180px) !important;
    margin: 22px auto 38px !important;
    padding: 30px 34px 36px !important;
    background: #ffffff !important;
    border: 1px solid rgba(212, 178, 74, 0.22) !important;
    border-radius: 28px !important;
    box-shadow: 0 18px 45px rgba(13, 42, 87, 0.12) !important;
}

@media (max-width: 900px) {
    .complaints-hero,
    .complaints-hero.complaints-hero--matched {
        padding: 3px 0 7px !important;
        background:
            linear-gradient(90deg,
                transparent 0%,
                rgba(215, 178, 63, 0.00) 14%,
                rgba(215, 178, 63, 0.09) 34%,
                rgba(241, 223, 149, 0.30) 50%,
                rgba(215, 178, 63, 0.09) 66%,
                rgba(215, 178, 63, 0.00) 86%,
                transparent 100%) center calc(100% - 1px) / 500px 3px no-repeat,
            radial-gradient(ellipse at 12% 92%, rgba(255, 255, 255, 0.038) 0%, rgba(255, 255, 255, 0.000) 50%),
            radial-gradient(ellipse at 88% 86%, rgba(215, 178, 63, 0.044) 0%, rgba(215, 178, 63, 0.000) 48%),
            linear-gradient(135deg, rgba(12, 29, 60, 0.99) 0%, rgba(22, 45, 86, 0.97) 54%, rgba(10, 22, 45, 0.99) 100%) !important;
    }

    .complaints-hero::before,
    .complaints-hero.complaints-hero--matched::before {
        bottom: -66px !important;
        height: 130px !important;
        opacity: 0.68 !important;
    }

    .complaints-hero::after,
    .complaints-hero.complaints-hero--matched::after {
        bottom: -92px !important;
        height: 150px !important;
        opacity: 0.50 !important;
    }

    .complaints-topbar,
    .complaints-hero--matched .complaints-topbar {
        width: min(calc(100% - 18px), 100%) !important;
        min-height: 30px !important;
        justify-content: center !important;
        margin-bottom: 2px !important;
    }

    .complaints-logo-shell,
    .complaints-logo-home-style,
    .complaints-logo-transparent {
        max-width: min(100%, 162px) !important;
        margin-bottom: 5px !important;
    }

    .complaints-logo-img,
    .complaints-logo,
    .complaints-logo-home-style .complaints-logo-img {
        width: min(100%, 132px) !important;
        max-width: 132px !important;
        max-height: 50px !important;
    }

    .complaints-pill,
    .complaints-badge {
        font-size: 0.45rem !important;
        padding: 3px 6px !important;
    }

    .complaints-hero-copy h1,
    .complaints-hero-copy--matched h1,
    .complaints-header h1 {
        font-size: clamp(0.79rem, 2.84vw, 0.94rem) !important;
    }

    .complaints-hero-copy p,
    .complaints-hero-copy--matched p,
    .complaints-header p {
        font-size: 0.45rem !important;
    }

    .complaints-form-card {
        width: min(calc(100% - 18px), 100%) !important;
        margin: 18px auto 28px !important;
        padding: 22px 18px 26px !important;
        border-radius: 22px !important;
    }
}

@media (max-width: 640px) {
    .complaints-hero,
    .complaints-hero.complaints-hero--matched {
        padding: 3px 0 7px !important;
        background:
            linear-gradient(90deg,
                transparent 0%,
                rgba(215, 178, 63, 0.00) 12%,
                rgba(215, 178, 63, 0.08) 34%,
                rgba(241, 223, 149, 0.27) 50%,
                rgba(215, 178, 63, 0.08) 66%,
                rgba(215, 178, 63, 0.00) 88%,
                transparent 100%) center calc(100% - 1px) / 340px 2px no-repeat,
            radial-gradient(ellipse at 12% 92%, rgba(255, 255, 255, 0.032) 0%, rgba(255, 255, 255, 0.000) 52%),
            radial-gradient(ellipse at 88% 86%, rgba(215, 178, 63, 0.038) 0%, rgba(215, 178, 63, 0.000) 50%),
            linear-gradient(135deg, rgba(12, 29, 60, 0.99) 0%, rgba(22, 45, 86, 0.97) 54%, rgba(10, 22, 45, 0.99) 100%) !important;
    }

    .complaints-hero::before,
    .complaints-hero.complaints-hero--matched::before {
        bottom: -54px !important;
        height: 108px !important;
        opacity: 0.58 !important;
    }

    .complaints-hero::after,
    .complaints-hero.complaints-hero--matched::after {
        bottom: -76px !important;
        height: 126px !important;
        opacity: 0.44 !important;
    }

    .complaints-logo-shell,
    .complaints-logo-home-style,
    .complaints-logo-transparent {
        max-width: min(100%, 148px) !important;
        margin-bottom: 5px !important;
    }

    .complaints-logo-img,
    .complaints-logo,
    .complaints-logo-home-style .complaints-logo-img {
        width: min(100%, 123px) !important;
        max-width: 123px !important;
        max-height: 45px !important;
    }

    .complaints-pill,
    .complaints-badge {
        font-size: 0.44rem !important;
    }

    .complaints-hero-copy h1,
    .complaints-hero-copy--matched h1,
    .complaints-header h1 {
        font-size: clamp(0.77rem, 3.70vw, 0.88rem) !important;
    }

    .complaints-hero-copy p,
    .complaints-hero-copy--matched p,
    .complaints-header p {
        font-size: 0.44rem !important;
        line-height: 1.28 !important;
    }
}
/* STEP_82_MATCH_COMPLAINTS_HEADER_TO_HOME_HEADER_END */

/* STEP_83_HIDE_COMPLAINTS_HOME_BUTTON_START */
/* Hide only the home page button inside the complaints page header.
   Keeps logo, title, header background, and form unchanged.
   Backup and rollback are handled by Step_83 PowerShell script. */

.complaints-hero .complaints-back-link,
.complaints-hero--matched .complaints-back-link,
.complaints-topbar .complaints-back-link {
    display: none !important;
}

.complaints-topbar,
.complaints-hero--matched .complaints-topbar {
    min-height: 0 !important;
    margin-bottom: 0 !important;
}
/* STEP_83_HIDE_COMPLAINTS_HOME_BUTTON_END */

/* STEP_84_INCREASE_COMPLAINTS_HEADER_10_PERCENT_START */
/* Increase only the complaints page compact header by about 10%.
   Keeps the home button hidden and leaves the form/content unchanged.
   Backup and rollback are handled by Step_84 PowerShell script. */

.complaints-hero,
.complaints-hero.complaints-hero--matched {
    padding: 4px 0 10px !important;
}

.complaints-logo-shell {
    max-width: min(100%, 195px) !important;
    margin: 0 auto 6px !important;
}

.complaints-logo-home-style,
.complaints-logo-transparent {
    max-width: min(100%, 195px) !important;
    margin: 0 auto 6px !important;
}

.complaints-logo-img,
.complaints-logo,
.complaints-logo-home-style .complaints-logo-img {
    width: min(100%, 161px) !important;
    max-width: 161px !important;
    max-height: 60px !important;
}

.complaints-hero-copy,
.complaints-hero-copy--matched {
    max-width: 340px !important;
}

.complaints-pill,
.complaints-badge {
    margin: 0 0 4px !important;
    padding: 4px 7px !important;
    font-size: 0.52rem !important;
    line-height: 1.25 !important;
}

.complaints-hero-copy h1,
.complaints-hero-copy--matched h1,
.complaints-header h1 {
    max-width: 260px !important;
    font-size: clamp(0.91rem, 1.54vw, 1.13rem) !important;
    line-height: 1.08 !important;
}

.complaints-hero-copy p,
.complaints-hero-copy--matched p,
.complaints-header p {
    max-width: 240px !important;
    margin-top: 4px !important;
    font-size: 0.52rem !important;
    line-height: 1.34 !important;
}

/* Keep Step 83 behavior: no home button in complaints header. */
.complaints-hero .complaints-back-link,
.complaints-hero--matched .complaints-back-link,
.complaints-topbar .complaints-back-link {
    display: none !important;
}

.complaints-topbar,
.complaints-hero--matched .complaints-topbar {
    min-height: 0 !important;
    margin-bottom: 0 !important;
}

@media (max-width: 900px) {
    .complaints-hero,
    .complaints-hero.complaints-hero--matched {
        padding: 4px 0 9px !important;
    }

    .complaints-logo-shell,
    .complaints-logo-home-style,
    .complaints-logo-transparent {
        max-width: min(100%, 178px) !important;
        margin-bottom: 6px !important;
    }

    .complaints-logo-img,
    .complaints-logo,
    .complaints-logo-home-style .complaints-logo-img {
        width: min(100%, 145px) !important;
        max-width: 145px !important;
        max-height: 55px !important;
    }

    .complaints-pill,
    .complaints-badge {
        font-size: 0.50rem !important;
        padding: 4px 7px !important;
    }

    .complaints-hero-copy h1,
    .complaints-hero-copy--matched h1,
    .complaints-header h1 {
        font-size: clamp(0.87rem, 3.12vw, 1.03rem) !important;
    }

    .complaints-hero-copy p,
    .complaints-hero-copy--matched p,
    .complaints-header p {
        font-size: 0.50rem !important;
        line-height: 1.32 !important;
    }
}

@media (max-width: 640px) {
    .complaints-hero,
    .complaints-hero.complaints-hero--matched {
        padding: 4px 0 9px !important;
    }

    .complaints-logo-shell,
    .complaints-logo-home-style,
    .complaints-logo-transparent {
        max-width: min(100%, 163px) !important;
        margin-bottom: 6px !important;
    }

    .complaints-logo-img,
    .complaints-logo,
    .complaints-logo-home-style .complaints-logo-img {
        width: min(100%, 135px) !important;
        max-width: 135px !important;
        max-height: 50px !important;
    }

    .complaints-pill,
    .complaints-badge {
        font-size: 0.48rem !important;
    }

    .complaints-hero-copy h1,
    .complaints-hero-copy--matched h1,
    .complaints-header h1 {
        font-size: clamp(0.85rem, 4.07vw, 0.97rem) !important;
    }

    .complaints-hero-copy p,
    .complaints-hero-copy--matched p,
    .complaints-header p {
        font-size: 0.48rem !important;
        line-height: 1.31 !important;
    }
}
/* STEP_84_INCREASE_COMPLAINTS_HEADER_10_PERCENT_END */

/* STEP_85_INCREASE_COMPLAINTS_HEADER_20_PERCENT_ADD_POWERED_CAPSULE_START */
/* Increase only the complaints page header by another 20%.
   Adds a Powered by capsule under the complaints header copy.
   Keeps the home button hidden and leaves form/content unchanged.
   Backup and rollback are handled by Step_85 PowerShell script. */

.complaints-hero,
.complaints-hero.complaints-hero--matched {
    padding: 7px 0 16px !important;
}

.complaints-logo-shell {
    max-width: min(100%, 234px) !important;
    margin: 0 auto 8px !important;
}

.complaints-logo-home-style,
.complaints-logo-transparent {
    max-width: min(100%, 234px) !important;
    margin: 0 auto 8px !important;
}

.complaints-logo-img,
.complaints-logo,
.complaints-logo-home-style .complaints-logo-img {
    width: min(100%, 193px) !important;
    max-width: 193px !important;
    max-height: 72px !important;
}

.complaints-hero-copy,
.complaints-hero-copy--matched {
    max-width: 408px !important;
}

.complaints-pill,
.complaints-badge {
    margin: 0 0 5px !important;
    padding: 5px 9px !important;
    font-size: 0.62rem !important;
    line-height: 1.25 !important;
}

.complaints-hero-copy h1,
.complaints-hero-copy--matched h1,
.complaints-header h1 {
    max-width: 312px !important;
    font-size: clamp(1.09rem, 1.85vw, 1.36rem) !important;
    line-height: 1.08 !important;
}

.complaints-hero-copy p,
.complaints-hero-copy--matched p,
.complaints-header p {
    max-width: 288px !important;
    margin-top: 5px !important;
    font-size: 0.62rem !important;
    line-height: 1.34 !important;
}

/* Powered capsule inside complaints header, matching the home page footer capsule spirit. */
.complaints-hero-copy::after,
.complaints-hero-copy--matched::after {
    content: "Powered by Arak Alnukhba Aljadida" !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: fit-content !important;
    max-width: calc(100% - 16px) !important;
    margin: 9px auto 0 !important;
    padding: 4px 11px !important;
    border: 1px solid rgba(215, 178, 63, 0.40) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.12) !important;
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 0.66rem !important;
    line-height: 1.45 !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em !important;
    direction: ltr !important;
    unicode-bidi: isolate !important;
    text-align: center !important;
    box-shadow: 0 10px 22px rgba(8, 20, 44, 0.12) !important;
    text-decoration: none !important;
}

/* Keep Step 83 behavior: no home button in complaints header. */
.complaints-hero .complaints-back-link,
.complaints-hero--matched .complaints-back-link,
.complaints-topbar .complaints-back-link {
    display: none !important;
}

.complaints-topbar,
.complaints-hero--matched .complaints-topbar {
    min-height: 0 !important;
    margin-bottom: 0 !important;
}

@media (max-width: 900px) {
    .complaints-hero,
    .complaints-hero.complaints-hero--matched {
        padding: 6px 0 14px !important;
    }

    .complaints-logo-shell,
    .complaints-logo-home-style,
    .complaints-logo-transparent {
        max-width: min(100%, 214px) !important;
        margin-bottom: 8px !important;
    }

    .complaints-logo-img,
    .complaints-logo,
    .complaints-logo-home-style .complaints-logo-img {
        width: min(100%, 174px) !important;
        max-width: 174px !important;
        max-height: 66px !important;
    }

    .complaints-pill,
    .complaints-badge {
        font-size: 0.60rem !important;
        padding: 5px 8px !important;
    }

    .complaints-hero-copy h1,
    .complaints-hero-copy--matched h1,
    .complaints-header h1 {
        font-size: clamp(1.04rem, 3.74vw, 1.24rem) !important;
    }

    .complaints-hero-copy p,
    .complaints-hero-copy--matched p,
    .complaints-header p {
        font-size: 0.60rem !important;
        line-height: 1.32 !important;
    }

    .complaints-hero-copy::after,
    .complaints-hero-copy--matched::after {
        margin-top: 8px !important;
        padding: 4px 10px !important;
        font-size: 0.62rem !important;
    }
}

@media (max-width: 640px) {
    .complaints-hero,
    .complaints-hero.complaints-hero--matched {
        padding: 6px 0 13px !important;
    }

    .complaints-logo-shell,
    .complaints-logo-home-style,
    .complaints-logo-transparent {
        max-width: min(100%, 196px) !important;
        margin-bottom: 7px !important;
    }

    .complaints-logo-img,
    .complaints-logo,
    .complaints-logo-home-style .complaints-logo-img {
        width: min(100%, 162px) !important;
        max-width: 162px !important;
        max-height: 60px !important;
    }

    .complaints-pill,
    .complaints-badge {
        font-size: 0.58rem !important;
    }

    .complaints-hero-copy h1,
    .complaints-hero-copy--matched h1,
    .complaints-header h1 {
        font-size: clamp(1.02rem, 4.88vw, 1.16rem) !important;
    }

    .complaints-hero-copy p,
    .complaints-hero-copy--matched p,
    .complaints-header p {
        font-size: 0.58rem !important;
        line-height: 1.31 !important;
    }

    .complaints-hero-copy::after,
    .complaints-hero-copy--matched::after {
        margin-top: 8px !important;
        padding: 4px 9px !important;
        font-size: 0.58rem !important;
        max-width: calc(100% - 10px) !important;
    }
}
/* STEP_85_INCREASE_COMPLAINTS_HEADER_20_PERCENT_ADD_POWERED_CAPSULE_END */

/* STEP_86_COMPLAINTS_FOOTER_POWERED_STYLE_START */
/* Ensure the Powered by capsule appears correctly on the complaints page footer.
   Matches the home page capsule behavior. */

.complaints-page .site-footer-powered,
.complaints-footer .site-footer-powered {
    width: fit-content;
    margin: 8px auto 0;
    padding: 3px 10px;
    border: 1px solid rgba(215, 178, 63, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.46);
    color: rgba(76, 92, 120, 0.82);
    font-size: 0.68rem;
    line-height: 1.45;
    font-weight: 500;
    letter-spacing: 0.01em;
    direction: ltr !important;
    unicode-bidi: isolate !important;
    text-align: center !important;
}

.complaints-page .site-footer-powered a,
.complaints-footer .site-footer-powered a {
    color: inherit !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: row !important;
    gap: 3px;
    direction: ltr !important;
    unicode-bidi: isolate !important;
    text-align: center !important;
}

.complaints-page .site-footer-powered a:hover,
.complaints-footer .site-footer-powered a:hover {
    text-decoration: none !important;
    filter: brightness(0.92);
}

.complaints-page .site-footer-powered span,
.complaints-footer .site-footer-powered span {
    color: rgba(12, 29, 60, 0.82);
    font-weight: 700;
    direction: ltr !important;
    unicode-bidi: isolate !important;
}
/* STEP_86_COMPLAINTS_FOOTER_POWERED_STYLE_END */

/* STEP_87_REMOVE_POWERED_CAPSULE_FROM_COMPLAINTS_HEADER_START */
/* Remove only the Powered by capsule generated inside the complaints header.
   Footer Powered by capsule remains untouched.
   Backup and rollback are handled by Step_87 PowerShell script. */

.complaints-hero-copy::after,
.complaints-hero-copy--matched::after {
    content: none !important;
    display: none !important;
}
/* STEP_87_REMOVE_POWERED_CAPSULE_FROM_COMPLAINTS_HEADER_END */

/* STEP_88_MOVE_COMPLAINT_TYPE_BLOCK_UP_START */
/* Move only the complaint type label/select block slightly upward.
   Keeps field width, style, and the rest of the form unchanged.
   Backup and rollback are handled by Step_88 PowerShell script. */

.complaint-panel,
.complaints-form > .form-block:first-child,
.complaint-type-block {
    padding-top: 16px !important;
}

.complaint-type-block .field-label,
.complaint-type-block label,
.complaint-panel .field-label:first-child,
.complaints-form > .form-block:first-child label {
    margin-top: 0 !important;
    margin-bottom: 8px !important;
}

.complaint-type-block {
    margin-top: -8px !important;
    margin-bottom: 18px !important;
}

@media (max-width: 900px) {
    .complaint-panel,
    .complaints-form > .form-block:first-child,
    .complaint-type-block {
        padding-top: 12px !important;
    }

    .complaint-type-block {
        margin-top: -6px !important;
    }
}
/* STEP_88_MOVE_COMPLAINT_TYPE_BLOCK_UP_END */

/* STEP_89_REPLACE_CONTACT_CARD_ICON_START */
/* Replace only the main Contact Us card icon with the provided chat icon.
   Keeps title, contact list, button, and card layout unchanged.
   Backup and rollback are handled by Step_89 PowerShell script. */

#contact-us .contact-card-icon .card-header-icon-badge {
    width: 56px !important;
    height: 56px !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    background-image: url("../images/contact-chat-icon.png") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
}

#contact-us .contact-card-icon .card-header-icon-badge svg {
    display: none !important;
}

@media (max-width: 640px) {
    #contact-us .contact-card-icon .card-header-icon-badge {
        width: 52px !important;
        height: 52px !important;
    }
}
/* STEP_89_REPLACE_CONTACT_CARD_ICON_END */

/* STEP_90_MATCH_CONTACT_ICON_CIRCLE_SIZE_START */
/* Match the Contact Us main icon with the same gold circle size/style as other card icons.
   Keeps the custom chat icon image from Step 89.
   Backup and rollback are handled by Step_90 PowerShell script. */

#contact-us .contact-card-icon {
    margin: 0 0 9px !important;
}

#contact-us .contact-card-icon .card-header-icon-badge {
    width: 46px !important;
    height: 46px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background:
        linear-gradient(180deg, rgba(229, 196, 89, 0.18), rgba(229, 196, 89, 0.08)),
        url("../images/contact-chat-icon.png") center / 28px 28px no-repeat !important;
    border: 2px solid rgba(214, 185, 92, 0.42) !important;
    box-shadow: 0 14px 28px rgba(10, 24, 49, 0.10) !important;
}

#contact-us .contact-card-icon .card-header-icon-badge svg {
    display: none !important;
}

@media (max-width: 640px) {
    #contact-us .contact-card-icon .card-header-icon-badge {
        width: 44px !important;
        height: 44px !important;
        background:
            linear-gradient(180deg, rgba(229, 196, 89, 0.18), rgba(229, 196, 89, 0.08)),
            url("../images/contact-chat-icon.png") center / 27px 27px no-repeat !important;
    }
}
/* STEP_90_MATCH_CONTACT_ICON_CIRCLE_SIZE_END */

/* STEP_91_ADD_CONTACT_ACTION_BUTTONS_START */
/* Add two placeholder action buttons under the existing complaint button.
   Layout:
   Row 1: تقديم شكوى
   Row 2: استفسارات + إنضم الينا
   Buttons are visual placeholders until final links/actions are approved. */

#contact-us .contact-actions-stack {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    padding: 8px 0 0 !important;
    margin-top: 1px !important;
    background: transparent !important;
    border: none !important;
}

#contact-us .contact-action-main {
    width: min(100%, 181px) !important;
    min-width: 145px !important;
}

#contact-us .contact-secondary-actions {
    direction: rtl !important;
    width: min(100%, 265px) !important;
    display: flex !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: 8px !important;
}

#contact-us .contact-secondary-action-link {
    appearance: none !important;
    -webkit-appearance: none !important;
    flex: 1 1 0 !important;
    min-width: 0 !important;
    min-height: 32px !important;
    padding: 6px 9px !important;
    border: none !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #0f2347 0%, #173564 100%) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: 0.70rem !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    cursor: default !important;
    opacity: 1 !important;
    box-shadow: 0 10px 18px rgba(12, 29, 60, 0.14) !important;
    text-decoration: none !important;
}

#contact-us .contact-secondary-action-link:hover {
    transform: none !important;
    filter: none !important;
    text-decoration: none !important;
}

#contact-us .contact-secondary-action-link::before {
    width: 13px !important;
    height: 13px !important;
    flex: 0 0 13px !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
}

#contact-us .contact-inquiry-action::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M9.7 9.1a2.5 2.5 0 0 1 4.8.9c0 1.7-2.5 2.1-2.5 3.7'/%3E%3Cpath d='M12 17h.01'/%3E%3C/svg%3E") !important;
}

#contact-us .contact-join-action::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 19a6 6 0 0 0-12 0'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M19 8v6'/%3E%3Cpath d='M22 11h-6'/%3E%3C/svg%3E") !important;
}

@media (max-width: 640px) {
    #contact-us .contact-actions-stack {
        gap: 7px !important;
        padding-top: 9px !important;
    }

    #contact-us .contact-secondary-actions {
        width: min(100%, 285px) !important;
        gap: 7px !important;
    }

    #contact-us .contact-secondary-action-link {
        min-height: 34px !important;
        padding: 7px 8px !important;
        font-size: 0.74rem !important;
    }
}
/* STEP_91_ADD_CONTACT_ACTION_BUTTONS_END */

/* STEP_93_REPLACE_MEDIA_ICON_START */
/* Replace only the Media card main icon with the provided play icon image.
   Keeps media title, download buttons, spacing, and other cards unchanged. */

#media .media-card-video-icon {
    width: 46px !important;
    height: 46px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: url("../images/media-play-icon.png") center / contain no-repeat !important;
    border: none !important;
    box-shadow: none !important;
}

#media .media-card-play-symbol {
    display: none !important;
}

@media (max-width: 640px) {
    #media .media-card-video-icon {
        width: 44px !important;
        height: 44px !important;
        background: url("../images/media-play-icon.png") center / contain no-repeat !important;
    }
}
/* STEP_93_REPLACE_MEDIA_ICON_END */

/* STEP_94_REPLACE_MEDIA_ICON_WITH_ATTACHED_PLAY_STYLE_START */
/* Replace only the Media card main icon with the full attached-style play icon.
   This overrides the previous image-based media icon so the icon appears complete and not tiny. */

#media .media-card-icon-wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 0 8px !important;
}

#media .media-card-video-icon {
    position: relative !important;
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
    background: linear-gradient(180deg, #fffdf6 0%, #f8f2dd 100%) !important;
    border: 2px solid rgba(214, 185, 92, 0.68) !important;
    box-shadow: 0 12px 24px rgba(10, 24, 49, 0.10) !important;
}

#media .media-card-video-icon::before {
    content: "" !important;
    position: absolute !important;
    inset: 10px !important;
    border-radius: 999px !important;
    background: #123466 !important;
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.10) !important;
}

#media .media-card-video-icon::after {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-34%, -50%) !important;
    width: 0 !important;
    height: 0 !important;
    border-top: 7px solid transparent !important;
    border-bottom: 7px solid transparent !important;
    border-left: 10px solid #ffffff !important;
    border-right: 0 !important;
    z-index: 2 !important;
}

#media .media-card-play-symbol {
    display: none !important;
}

@media (max-width: 640px) {
    #media .media-card-video-icon {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        min-height: 50px !important;
    }

    #media .media-card-video-icon::before {
        inset: 9px !important;
    }

    #media .media-card-video-icon::after {
        border-top-width: 6px !important;
        border-bottom-width: 6px !important;
        border-left-width: 9px !important;
    }
}
/* STEP_94_REPLACE_MEDIA_ICON_WITH_ATTACHED_PLAY_STYLE_END */

/* STEP_95_CREATE_INQUIRIES_PAGE_START */
/* Activate the Contact Us inquiry button after creating inquiries.html.
   Keeps the visual style from Step 91 and only changes the active inquiry link behavior. */

#contact-us a.contact-inquiry-action {
    cursor: pointer !important;
    text-decoration: none !important;
}

#contact-us a.contact-inquiry-action:hover {
    transform: translateY(-1px) !important;
    filter: brightness(1.04) !important;
    text-decoration: none !important;
}

#contact-us a.contact-inquiry-action:focus-visible {
    outline: 3px solid rgba(215, 178, 63, 0.45) !important;
    outline-offset: 3px !important;
}
/* STEP_95_CREATE_INQUIRIES_PAGE_END */

/* STEP_96_CREATE_JOIN_TEAM_PAGE_START */
/* Activate the Contact Us Join Our Team button after creating join-team.html.
   Keeps the visual style from Step 91 and only changes the active join link behavior. */

#contact-us a.contact-join-action {
    cursor: pointer !important;
    text-decoration: none !important;
}

#contact-us a.contact-join-action:hover {
    transform: translateY(-1px) !important;
    filter: brightness(1.04) !important;
    text-decoration: none !important;
}

#contact-us a.contact-join-action:focus-visible {
    outline: 3px solid rgba(215, 178, 63, 0.45) !important;
    outline-offset: 3px !important;
}
/* STEP_96_CREATE_JOIN_TEAM_PAGE_END */

/* STEP_98_ADD_ADMIN_LOGIN_BUTTON_START */
/* Add a small admin login button in the home footer.
   Keeps it visible enough for admins, but discreet for public visitors. */
.site-footer-admin-login {
    width: fit-content;
    margin: 8px auto 0;
    padding: 0;
    text-align: center;
}

.site-footer-admin-login a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 6px 15px;
    border-radius: 999px;
    border: 1px solid rgba(12, 29, 60, 0.16);
    background: rgba(255, 255, 255, 0.58);
    color: rgba(12, 29, 60, 0.82) !important;
    font-size: 0.72rem;
    line-height: 1;
    font-weight: 800;
    text-decoration: none !important;
    box-shadow: 0 8px 18px rgba(12, 29, 60, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-footer-admin-login a:hover {
    transform: translateY(-1px);
    border-color: rgba(215, 178, 63, 0.44);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 22px rgba(12, 29, 60, 0.09);
    text-decoration: none !important;
}

.site-footer-admin-login a:focus-visible {
    outline: 2px solid rgba(215, 178, 63, 0.50);
    outline-offset: 3px;
}

@media (max-width: 640px) {
    .site-footer-admin-login {
        margin-top: 7px;
    }

    .site-footer-admin-login a {
        min-height: 28px;
        padding: 6px 13px;
        font-size: 0.68rem;
    }
}
/* STEP_98_ADD_ADMIN_LOGIN_BUTTON_END */

/* STEP_100_SMALLER_ADMIN_LOGIN_BUTTON_START */
/* Make the footer admin login button smaller and more discreet. */
.site-footer-admin-login {
    margin: 5px auto 0 !important;
    opacity: 0.72 !important;
}

.site-footer-admin-login a {
    min-height: 22px !important;
    padding: 4px 10px !important;
    border-radius: 999px !important;
    font-size: 0.58rem !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    box-shadow: none !important;
    background: rgba(255, 255, 255, 0.34) !important;
    border-color: rgba(12, 29, 60, 0.10) !important;
    color: rgba(12, 29, 60, 0.58) !important;
}

.site-footer-admin-login a:hover {
    opacity: 1 !important;
    transform: none !important;
    background: rgba(255, 255, 255, 0.56) !important;
    border-color: rgba(215, 178, 63, 0.30) !important;
    box-shadow: none !important;
}

@media (max-width: 640px) {
    .site-footer-admin-login {
        margin-top: 4px !important;
    }

    .site-footer-admin-login a {
        min-height: 20px !important;
        padding: 4px 9px !important;
        font-size: 0.54rem !important;
    }
}
/* STEP_100_SMALLER_ADMIN_LOGIN_BUTTON_END */

