* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Noto Sans Lao", "Phetsarath OT", Arial, sans-serif;
    color: #222;
}

.site-header {
    width: 100%;
    background: #e5e5e5;
}

.header-container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

/* TOP */
.header-top {
    height: 44px;
    background: #c90000;
}

.header-top-inner {
    height: 44px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 32px;
}

.top-menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.top-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    white-space: nowrap;
}

.top-menu a:hover {
    opacity: .85;
}

/* MAIN */
.header-main {
    height: 72px;
    background: #e7e7e7;
    border-bottom: 1px solid #d5d5d5;
}

.header-main-inner {
    height: 72px;
    display: flex;
    align-items: center;
    padding: 0 26px;
}

.header-logo {
    width: 510px;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #c90000;
    border-right: 1px solid #d8d8d8;
    flex-shrink: 0;
}

.header-logo img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.header-logo span {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
}

.main-menu {
    height: 72px;
    display: flex;
    align-items: stretch;
    flex: 1;
}

.main-menu > a {
    min-width: 170px;
    height: 72px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    white-space: nowrap;
    border-right: 1px solid #d8d8d8;
}

.main-menu > a:hover {
    background: #dedede;
}

.main-menu > a.active {
    min-width: 80px;
    color: #e0b300;
    font-size: 34px;
}

.bank-icon {
    color: #e4b400;
    font-size: 34px;
    line-height: 1;
}

.arrow {
    font-size: 18px;
    line-height: 1;
}

/* ACTIONS */
.header-actions {
    height: 72px;
    display: flex;
    align-items: center;
    gap: 22px;
    padding-left: 26px;
    flex-shrink: 0;
}

.search-btn {
    width: 42px;
    height: 42px;
    border: 1px solid #d2d2d2;
    border-radius: 50%;
    background: #fff;
    color: #c90000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.search-btn:hover {
    background: #f7f7f7;
}

.lang-static {
    font-size: 16px;
    color: #333;
    white-space: nowrap;
}

.login-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    font-size: 17px;
    white-space: nowrap;
}

.login-link svg {
    color: #222;
}

/* MOBILE */
@media (max-width: 1200px) {
    .header-logo {
        width: auto;
        min-width: 320px;
        padding-right: 20px;
    }

    .main-menu > a {
        min-width: auto;
        padding: 0 16px;
        font-size: 14px;
    }

    .top-menu {
        gap: 18px;
    }
}

@media (max-width: 900px) {
    .header-top {
        display: none;
    }

    .header-main,
    .header-main-inner {
        height: auto;
    }

    .header-main-inner {
        flex-wrap: wrap;
        padding: 12px 16px;
        gap: 12px;
    }

    .header-logo {
        width: 100%;
        height: auto;
        border-right: none;
    }

    .header-logo span {
        font-size: 15px;
        white-space: normal;
    }

    .main-menu {
        width: 100%;
        height: auto;
        overflow-x: auto;
    }

    .main-menu > a {
        height: 52px;
        flex-shrink: 0;
    }

    .header-actions {
        width: 100%;
        height: auto;
        padding-left: 0;
        justify-content: flex-end;
    }
}

.site-footer {
    background: #cfcfcf;
    color: #6a3b35;
    font-family: "Noto Sans Lao", "Phetsarath OT", Arial, sans-serif;
}

.footer-container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 20px;
}

/* partners */
.footer-partners {
    background: #d8d8d8;
    padding: 50px 0 55px;
}

.partners-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.partners-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    text-decoration: none;
}

.partners-list img {
    display: block;
    height: 54px;
    width: auto;
    object-fit: contain;
    border-radius: 2px;
}

/* main */
.footer-main {
    background: #bfbfbf;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    padding: 20px 0 28px;
}

.footer-col {
    text-align: center;
}

.footer-col h4,
.footer-col-title-spaced {
    margin: 0 0 14px;
    font-size: 20px;
    font-weight: 700;
    color: #63332d;
}

.footer-col-title-spaced {
    margin-top: 28px;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    text-decoration: none;
    color: #6a3b35;
    font-size: 17px;
    line-height: 1.6;
}

.footer-col a:hover {
    text-decoration: underline;
}

/* bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.35);
    padding: 22px 0 14px;
    display: grid;
    grid-template-columns: 1.05fr 1.15fr 1fr 1.15fr .8fr .8fr .8fr 1.4fr;
    gap: 20px;
    align-items: start;
}

.footer-contact-item {
    text-align: center;
    color: #6a3b35;
}

.footer-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    color: #6a3b35;
}

.footer-big {
    font-size: 34px;
    line-height: 1.1;
    margin-bottom: 6px;
}

.footer-small {
    font-size: 16px;
    line-height: 1.5;
}

.footer-copyright {
    padding-top: 6px;
}

/* responsive */
@media (max-width: 1200px) {
    .footer-links {
        gap: 40px;
    }

    .footer-bottom {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 30px 0;
    }

    .footer-bottom {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-big {
        font-size: 28px;
    }
}

@media (max-width: 560px) {
    .footer-partners {
        padding: 30px 0;
    }

    .partners-list img {
        height: 42px;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-col a,
    .footer-small {
        font-size: 15px;
    }

    .footer-col h4,
    .footer-col-title-spaced {
        font-size: 18px;
    }
}

.main-content {
    background: #e7e7e7;
    font-family: "Noto Sans Lao", "Phetsarath OT", Arial, sans-serif;
    color: #5f332e;
}

.jubilee-section {
    padding: 70px 20px 80px;
}

.jubilee-container {
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
}

.jubilee-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #c90000;
    color: #fff;
    border-radius: 40px;
    padding: 10px 26px;
    font-size: 18px;
    margin-bottom: 22px;
}

.jubilee-title {
    margin: 0 0 18px;
    font-size: 42px;
    line-height: 1.25;
    font-weight: 700;
    color: #5f332e;
}

.jubilee-subtitle {
    max-width: 820px;
    margin: 0 auto 36px;
    font-size: 21px;
    line-height: 1.7;
    color: #6a3b35;
}

.jubilee-image-box {
    position: relative;
    max-width: 720px;
    min-height: 320px;
    margin: 0 auto 44px;
    border: 2px dashed rgba(106, 59, 53, 0.35);
    border-radius: 22px;
    background: #d8d8d8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.jubilee-image-box img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.jubilee-image-box span {
    font-size: 22px;
    color: rgba(106, 59, 53, 0.65);
}

.jubilee-info {
    margin-top: 20px;
}

.jubilee-info h2 {
    margin: 0 0 26px;
    font-size: 30px;
    color: #5f332e;
}

.history-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 32px;
}

.history-card {
    background: #cfcfcf;
    border-radius: 18px;
    padding: 24px 20px;
    min-height: 190px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.history-card strong {
    display: block;
    font-size: 30px;
    color: #c90000;
    margin-bottom: 12px;
}

.history-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    color: #6a3b35;
}

.jubilee-warning {
    max-width: 900px;
    margin: 0 auto 28px;
    padding: 18px 24px;
    border-radius: 18px;
    background: rgba(201, 0, 0, 0.08);
    border: 1px solid rgba(201, 0, 0, 0.18);
    color: #6a3b35;
    font-size: 17px;
    line-height: 1.7;
}

.jubilee-btn {
    border: 0;
    border-radius: 40px;
    background: #c90000;
    color: #fff;
    padding: 17px 34px;
    font-size: 18px;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(201, 0, 0, 0.25);
}

.jubilee-btn:hover {
    background: #b00000;
}

/* survey modal */
.survey-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    padding: 20px;
}

.survey-modal.active {
    display: flex;
}

.survey-box {
    position: relative;
    width: 100%;
    max-width: 520px;
    background: #e7e7e7;
    border-radius: 24px;
    padding: 34px 30px 30px;
    color: #5f332e;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.survey-close {
    position: absolute;
    top: 12px;
    right: 16px;
    border: 0;
    background: transparent;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    color: #6a3b35;
}

.survey-step {
    display: none;
    text-align: left;
}

.survey-step.active {
    display: block;
}

.survey-step h3 {
    margin: 0 0 22px;
    text-align: center;
    font-size: 24px;
    line-height: 1.4;
}

.survey-step p {
    text-align: center;
    font-size: 17px;
    line-height: 1.7;
}

.survey-step label {
    display: block;
    background: #d2d2d2;
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 12px;
    font-size: 17px;
    cursor: pointer;
}

.survey-step input {
    margin-right: 8px;
}

.survey-next,
.survey-finish {
    width: 100%;
    margin-top: 16px;
    border: 0;
    border-radius: 36px;
    background: #c90000;
    color: #fff;
    padding: 15px 24px;
    font-size: 17px;
    font-family: inherit;
    cursor: pointer;
}

.survey-next:hover,
.survey-finish:hover {
    background: #b00000;
}

@media (max-width: 1000px) {
    .history-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jubilee-title {
        font-size: 34px;
    }
}

@media (max-width: 560px) {
    .jubilee-section {
        padding: 45px 14px 55px;
    }

    .history-grid {
        grid-template-columns: 1fr;
    }

    .jubilee-title {
        font-size: 28px;
    }

    .jubilee-subtitle {
        font-size: 17px;
    }

    .jubilee-image-box {
        min-height: 220px;
    }

    .jubilee-image-box img {
        min-height: 220px;
    }
}