﻿:root {
    --gold-1: #f8d49a;
    --gold-2: #c99a40;
    --gold-3: #b88437;
    --bg-img: url('/thanh-vien/2.webp'); /* thay ảnh nền */
}


.hx-hero {
    position: relative;
    color: #f8f9fa;
    overflow: hidden;
}

    .hx-hero .hero-bg {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,.6) 65%, rgba(0,0,0,.8)), var(--bg-img) center/cover no-repeat;
    }


    .hx-hero .inner {
        position: relative;
        min-height: 90vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }


/* ===== Logo badge (SVG) ===== */
.hx-logo {
    width: clamp(220px, 60vw, 320px);
}

.gold-gradient {
    fill: url(#goldGrad);
    stroke: url(#goldGrad);
}


/* Bottom row */
.hx-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hx-company {
    letter-spacing: .35rem;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
    color: var(--brand-yellow);
    text-align: center;
    text-shadow: 0 2px 6px rgba(0,0,0,.35);
}


/* Arrow pill bottom-left */
.hx-arrow {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
}

    .hx-arrow .btn-pill {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 64px;
        height: 44px;
        border-radius: 999px;
        border: 3px solid var(--gold-2);
        color: var(--gold-2);
        font-size: 1.25rem;
        line-height: 0;
        backdrop-filter: blur(1px);
    }

        .hx-arrow .btn-pill:hover {
            background: var(--gold-2);
            color: #111;
        }


/* Make sure content has some padding on mobile */
@media (max-width:575.98px) {
    .hx-bottom {
        bottom: 1.25rem;
        padding: 0 1rem;
    }

    .hx-arrow {
        left: 1rem;
        bottom: 1rem;
    }
}

:root {
    --gold: #d6a645;
}


body {
    background: #000;
}

.svc-pennants {
    position: relative;
    color: #fff;
}

.svc-inner {
    min-height: 92vh;
    display: flex;
    align-items: center;
}


/* ===== PENNANT CARD ===== */
.pennant {
    --accent: #4aa3ff;
    position: relative;
    width: 100%;
    border-radius: 18px;
}


    /* Outer double border look */
    .pennant::before, .pennant::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 18px;
        pointer-events: none;
    }

    .pennant::before {
        border: 3px solid rgba(255,255,255,.85);
    }

    .pennant::after {
        inset: 6px;
        border-radius: 16px;
        border: 3px solid rgba(255,255,255,.25);
    }


.pennant-body {
    position: relative;
    height: 100%;
    min-height: 460px;
    border-radius: 16px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 50% 100%, 0 88%);
}


    /* Background image + dark mask */
    .pennant-body > .bg {
        position: absolute;
        inset: 0;
        background: var(--bg) center/cover no-repeat;
        filter: saturate(.95) contrast(.95);
    }

    .pennant-body > .mask {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.45) 45%, rgba(0,0,0,.7) 100%);
    }


/* ===== ICON RING (centered above top edge) ===== */
.icon-wrap {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -48px;
    width: 108px;
    height: 108px;
    z-index: 3;
}

    .icon-wrap .ring {
        position: absolute;
        inset: 0;
        border-radius: 999px;
        box-shadow: 0 0 0 8px #0f0f0f;
    }

        .icon-wrap .ring::before {
            content: "";
            position: absolute;
            inset: 0;
            border: 8px solid var(--accent);
            border-radius: inherit;
        }

        .icon-wrap .ring::after {
            content: "";
            position: absolute;
            inset: 12px;
            border: 3px solid rgba(255,255,255,.9);
            border-radius: inherit;
        }

    .icon-wrap i {
        position: absolute;
        inset: 0;
        display: grid;
        place-items: center;
        font-size: 38px;
        text-shadow: 0 2px 6px rgba(0,0,0,.45);
    }


/* ===== TITLE ===== */
/*.title {
    position: absolute;
    left: 0;
    right: 0;
    top: 30%;
    transform: translateY(-30%);
    text-align: center;
    z-index: 2;
    padding: 0 .75rem;
    font-weight: 800;
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    line-height: 1.2;
    text-shadow: 0 2px 6px rgba(0,0,0,.5);
}*/


.svc-arrow {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
}

    .svc-arrow .btn-pill {
        display: inline-flex;
        width: 64px;
        height: 44px;
        border-radius: 999px;
        border: 3px solid var(--gold);
        color: var(--gold);
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
    }

        .svc-arrow .btn-pill:hover {
            background: var(--gold);
            color: #111;
        }


@media (max-width: 991.98px) {
    .pennant-body {
        min-height: 380px;
    }

    .icon-wrap {
        width: 96px;
        height: 96px;
        top: -44px;
    }

    .svc-inner {
        padding-block: 2rem;
    }
}
/* ====== Section base ====== */
.section-services-dark {
    background: #000;
    padding: clamp(48px, 6vw, 80px) 0;
    color: #fff;
}

/* ====== Card (flag) ====== */
.flag-card {
    --accent: #6aa4ff; /* đổi theo từng thẻ */
    --border: rgba(255,255,255,.18);
    --overlay1: rgba(0,0,0,.08);
    --overlay2: rgba(0,0,0,.55);
    --overlay3: rgba(0,0,0,.78);
    position: relative;
    padding-top: 64px; /* chừa chỗ cho icon tròn */
}

    /* vòng tròn icon */
    .flag-card .badge-ring {
        position: absolute;
        top: 80px;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 112px;
        height: 112px;
        border-radius: 50%;
        background: #12151b;
        border: 6px solid var(--accent);
        display: grid;
        place-items: center;
        color: var(--accent);
        font-size: 40px;
        box-shadow: 0 0 0 10px rgba(255,255,255,0.06), 0 10px 28px rgba(0,0,0,.5);
        z-index: 2;
    }

    /* khung chứa SVG + text */
    .flag-card .flag-shell {
        position: relative;
        height: clamp(360px, 40vh, 520px);
    }

    /* text chồng lên ảnh */
    .flag-card .flag-text {
        position: absolute;
        inset: 0;
        display: grid;
        place-content: end center;
        text-align: center;
        padding: 1.25rem 1rem 2rem;
        z-index: 3;
    }

        .flag-card .flag-text h3 {
            font-size: 18px;
            font-weight: 700;
            line-height: 1.25;
            text-shadow: 0 2px 14px rgba(0,0,0,.65);
            margin: 0;
            color: #fff;
            top: 47%;
            position: absolute;
            left: 32%;
        }

    /* viền sáng nhẹ khi hover */
    .flag-card .flag-shell:hover {
        filter: brightness(1.04);
    }

    .flag-card a.stretched-link {
        z-index: 4;
    }

/* helper cho màu */
.flag-blue {
    --accent: #5aa6ff;
}

.flag-orange {
    --accent: #ff9a50;
}

.flag-red {
    --accent: #ff5353;
}

.flag-green {
    --accent: #36d17c;
}

.flag-purple {
    --accent: #b069ff;
}

.flag-sand {
    --accent: #c7a476;
}

/* ----- SVG fit ----- */
.flag-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.icon_1_mb {
    width: 60%;
}
/* để khoảng cách giữa các cột thoáng hơn */
@media (min-width: 992px) {
    .services-row > [class*="col"] {
        padding-left: .6rem;
        padding-right: .6rem;
    }
}

/* ===== Vision – Mission section ===== */
.section-vm {
    position: relative;
    background: #0a0a0a;
    color: #fff;
    overflow: hidden;
    padding: clamp(56px, 7vw, 100px) 0;
}

    /* Địa cầu mờ ở nền (CC0 – Wikimedia) */
    .section-vm::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        width: min(600px, 120vw);
        aspect-ratio: 1/1;
        transform: translate(-50%, 5%); /* đẩy lên một chút như hình mẫu */
        background: url('https://upload.wikimedia.org/wikipedia/commons/6/64/Globe_%28transparent%29.svg') no-repeat center / contain;
        opacity: .12; /* độ mờ của địa cầu */
        filter: grayscale(1) contrast(1.1);
        pointer-events: none;
    }

/* Tiêu đề lớn màu vàng */
.vm-title {
    color: var(--brand-yellow); /* vàng ấm giống hình */
    letter-spacing: .5px;
    font-weight: 700;
    font-size: clamp(38px, 6vw, 40px);
    line-height: 1.05;
    margin-bottom: .75rem;
}

/* Đoạn mô tả đậm, chữ to – dễ đọc */
.vm-lead {
    font-weight: normal;
    font-size: clamp(16px, 1.1vw + .9rem, 19px);
    line-height: 1.7;
    margin: 0;
    /* max-width: 80%; */
    text-align: r;
}

/* Canh chữ và bố cục theo màn hình lớn */
@media (min-width: 992px) {
    .vm-right .vm-title {
        text-align: right;
    }
}

/* Nút mũi tên góc phải dưới */
.vm-next {
    position: absolute;
    right: clamp(14px, 3vw, 40px);
    bottom: clamp(14px, 3vw, 36px);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #d6a316;
    color: #d6a316;
    text-decoration: none;
    transition: .2s ease;
}

    .vm-next:hover {
        background: #d6a316;
        color: #111;
    }

:root {
    --brand-yellow: #d6a316; /* vàng chủ đạo */
    --glass-bg: rgba(6,17,28,.55); /* nền kính mờ cho thẻ nổi */
    --glass-bd: rgba(255,255,255,.18);
}

/* ===== Section ===== */
.section-import {
    position: relative;
    color: #fff;
    background: #09131c url('/thanh-vien/17.webp') center/cover no-repeat;
    padding: clamp(56px, 8vw, 150px) 0;
    overflow: hidden;
}

    /* lớp tối để chữ nổi bật */
    .section-import::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(60% 40% at 60% 65%, rgba(0,0,0,.35), transparent 70%), linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 35%, rgba(0,0,0,.55) 100%);
        pointer-events: none;
    }

/* ===== Heading + đoạn mô tả bên trái ===== */
.ie-title {
    color: var(--brand-yellow);
    font-weight: 800;
    letter-spacing: .5px;
    line-height: 1.05;
    font-size: clamp(32px, 3.6vw + .5rem, 40px);
    margin-bottom: .5rem;
}

.ie-intro {
    max-width: 48ch;
    font-size: clamp(15px, .85vw + .8rem, 20px);
    line-height: 1.65;
    margin-bottom: clamp(16px, 2vw, 24px);
}

/* ===== Thẻ nổi (glass card) bên phải ===== */
.ie-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: clamp(10px, 1.2vw, 18px);
}

.ie-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-bd);
    border-radius: 22px;
    padding: clamp(14px, 1.6vw, 20px);
    backdrop-filter: blur(3px);
    box-shadow: 0 10px 35px rgba(0,0,0,.35);
    position: relative;
}

    .ie-card .bi {
        font-size: clamp(26px, 2.2vw, 34px);
        color: var(--brand-yellow);
        margin-bottom: .35rem;
    }

    .ie-card p {
        font-size: clamp(13px, .6vw + .7rem, 16px);
        line-height: 1.45;
        margin: 0;
    }

    .ie-card b {
        color: #fff;
    }

/* ===== Bullets ở cuối ===== */
.ie-bullets {
    margin-top: clamp(22px, 3vw, 36px);
}

    .ie-bullets li {
        display: flex;
        gap: .75rem;
        align-items: flex-start;
        padding: .35rem 0;
        font-size: clamp(15px, .9vw + .7rem, 18px);
    }

    .ie-bullets .bullet-icon {
        flex: 0 0 auto;
        font-size: clamp(26px, 2vw, 34px);
        color: var(--brand-yellow);
        line-height: 1;
        margin-top: .15rem;
    }

    .ie-bullets .label {
        color: var(--brand-yellow);
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .3px;
    }

    .ie-bullets .desc {
        color: #e9eef4;
    }

/* ===== Responsive tinh chỉnh ===== */
@media (max-width: 767.98px) {
    .ie-intro {
        max-width: 100%;
    }

    .ie-badges {
        grid-template-columns: 1fr;
    }
    /* 2 thẻ xếp dọc trên mobile */
}

:root {
    --brand-yellow: #d6a316;
    --glass: rgba(0,0,0,.55);
    --glass-bd: rgba(255,255,255,.18);
}

/* ===== Section ===== */
.section-mkt {
    position: relative;
    color: #fff;
    background: #0b0b0b url('/thanh-vien/21.webp') center/cover no-repeat;
    padding: clamp(60px, 8vw, 130px) 0;
    overflow: hidden;
}

    .section-mkt::after {
        /* phủ tối để chữ nổi bật */
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(60% 55% at 50% 20%, rgba(0,0,0,.15), transparent 60%), linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.75));
        pointer-events: none;
        display: none;
    }

/* ===== Title ===== */
.mkt-title {
    color: var(--brand-yellow);
    letter-spacing: .5px;
    font-weight: 800;
    font-size: clamp(34px, 4.6vw, 40px);
    line-height: 1.05;
    text-align: center;
}

/* ===== Timeline (desktop) ===== */
.mkt-timeline {
    position: relative;
    margin-top: clamp(24px, 4vw, 48px);
}

.mkt-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(10px, 1.1vw, 18px);
    position: relative;
    padding-top: 34px; /* chừa chỗ cho dot + line */
}

    /* đường ngang chạy xuyên qua các dot */
    .mkt-items::before {
        content: "";
        position: absolute;
        top: 22px;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent 1%, var(--brand-yellow) 1% 99%, transparent 99%);
        opacity: .95;
    }

/* mỗi item để dot căn giữa */
.mkt-item {
    position: relative;
}

    .mkt-item .dot {
        position: absolute;
        top: 22px;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: #0e0e0e;
        border: 4px solid var(--brand-yellow);
        box-shadow: 0 8px 18px rgba(0,0,0,.4);
        z-index: 2;
    }

/* thẻ mờ phía dưới */
.mkt-card {
    margin-top: 26px; /* dưới dot */
    background: var(--glass);
    border: 1px solid var(--glass-bd);
    padding: clamp(14px, 1.4vw, 18px) clamp(12px, 1.4vw, 22px);
    border-radius: 8px;
    backdrop-filter: blur(3px);
    text-align: center;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .mkt-card .mkt-label {
        color: var(--brand-yellow);
        font-weight: 800;
        letter-spacing: .12em;
        text-transform: uppercase;
        font-size: clamp(12px, .8vw + .55rem, 16px);
        line-height: 1.35;
    }

/* ===== Mobile: chuyển timeline dọc ===== */
@media (max-width: 991.98px) {
    .mkt-items {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-top: 0;
        padding-left: 36px; /* chừa chỗ cho line + dot bên trái */
    }

        .mkt-items::before {
            top: 0;
            bottom: 0;
            left: 18px;
            right: auto;
            width: 2px;
            height: auto;
            background: linear-gradient(#d6a316,#d6a316);
        }

    .mkt-item .dot {
        left: 18px;
        top: 22px;
        transform: translate(-50%, -50%);
    }

    .mkt-card {
        margin-top: 0;
        min-height: 84px;
        text-align: left;
    }
}

/* Nút mũi tên góc phải dưới */
.mkt-next {
    position: absolute;
    right: clamp(14px, 3vw, 40px);
    bottom: clamp(14px, 3vw, 36px);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--brand-yellow);
    color: var(--brand-yellow);
    text-decoration: none;
    transition: .2s ease;
}

    .mkt-next:hover {
        background: var(--brand-yellow);
        color: #111;
    }

.ie-card {
    /*position:absolute;*/
    margin-top: 10px;
    padding-top: 50px;
}

    .ie-card img {
        position: absolute;
        width: 60px;
        left: 35%;
        top: -21px;
    }

.icon18 {
    width: 32px;
}

:root {
    --gold: #d4a02c; /* màu tiêu đề như ảnh mẫu */
    --overlay: rgba(0,0,0,.55); /* lớp tối phủ ảnh */
    --text: #f5f5f5;
}

.services {
    overflow: hidden;
}

.service-block {
    position: relative;
    display: flex;
    align-items: flex-start; /* chữ bám góc trên trái */
    justify-content: flex-start;
    color: var(--text);
    background-size: cover;
    background-position: center;
    border-radius: .5rem;
    overflow: hidden;
    isolation: isolate; /* để ::after phủ đúng */
}

    .service-block::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(0deg, var(--overlay), var(--overlay));
        z-index: 0;
    }

/* Nội dung chữ */
.service-content {
    position: relative;
    z-index: 1;
    padding: 2.25rem 2rem;
    width: 100%;
}

.service-title {
    color: var(--brand-yellow);
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    font-size: clamp(1.4rem, 1.2rem + 1.2vw, 2.4rem);
}

.service-list {
    margin: 0;
    padding-left: 0;
    list-style: none;
    font-size: clamp(1rem, .9rem + .3vw, 1.25rem);
    line-height: 1.6;
}

    .service-list li {
        font-size: 18px;
    }

        .service-list li + li {
            margin-top: .35rem;
        }

/* Layout tỉ lệ giống ảnh */
/* Trái cao, phải chia 2 khối bằng nhau trên md+ */
.left-tall {
    min-height: 540px;
}

.right-half {
    min-height: 260px;
}

/* Mobile: các khối full width, có chiều cao hợp lý */
@media (max-width: 767.98px) {
    .left-tall {
        min-height: 420px;
    }

    .right-half {
        min-height: 320px;
    }

    .service-content {
        padding: 1.75rem 1.25rem;
    }
}

/* Ảnh nền — thay link ảnh của bạn ở đây */
.bg-kol {
    background-image: url("/thanh-vien/22.webp");
}

.bg-digital {
    background-image: url("/thanh-vien/23.webp");
}

.bg-branding {
    background-image: url("/thanh-vien/24.webp");
}

:root {
    --gold: #d4a02c;
    --overlay: rgba(0,0,0,.58);
    --text: #f5f5f5;
}

.studio-section {
    overflow: hidden;
}

.tile {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    color: var(--text);
    border-radius: .5rem;
    background-size: cover;
    background-position: center;
    isolation: isolate;
    overflow: hidden;
}

    .tile::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(0deg,var(--overlay),var(--overlay));
        z-index: 0;
    }

.tile-content {
    position: relative;
    z-index: 1;
    padding: 2.25rem 2rem;
    width: 100%;
    text-align: left;
    min-height: 248px;
    border-radius: 6px;
}

.title {
    color: var(--brand-yellow);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: .02em;
    margin-bottom: 1rem;
    font-size: clamp(1.4rem,1rem + 1.6vw,2.5rem);
}

.desc {
    margin: 0;
    /* font-size: clamp(1rem,.95rem + .3vw,1.25rem); */
    line-height: 1.55;
}

    .desc p {
        margin: 0 0 .4rem 0;
        color: #fff;
        font-size: 18px;
    }

/* Chiều cao tương đối giống mockup */
/*.tile-half {
    min-height: 260px;
}

.tile-tall {
    min-height: 540px;
}*/

/* Mobile: xếp dọc, tăng chiều cao chữ dễ đọc */
@media (max-width: 767.98px) {
    /*.tile-half {
        min-height: 360px;
    }

    .tile-tall {
        min-height: 420px;
    }*/

    .tile-content {
        padding: 1.75rem 1.25rem;
    }
}

/* Ảnh nền — thay link ảnh theo nhu cầu */
.bg-creative {
    background-image: url("/thanh-vien/25.webp");
    background-position: center center;
    border-radius: 6px;
}

.bg-event {
    background-image: url("/thanh-vien/26.webp");
    background-position: center;
    border-radius: 6px;
}

.bg-live {
    background-image: url("/thanh-vien/27.webp");
}

:root {
    --gold: #efc43b; /* màu vàng tiêu đề & icon */
    --overlay: rgba(0,0,0,.75);
    --text: #eee;
}

/* ===== Section ===== */
.svc {
    position: relative;
    color: var(--text);
    background: #0f0f0f;
    overflow: hidden;
    padding-top: 75px;
    padding-bottom: 75px;
}

    .svc::before {
        /* ảnh nền: THAY link của bạn ở đây */
        content: "";
        position: absolute;
        inset: 0;
        background: url("/thanh-vien/35.webp") center/cover no-repeat;
        z-index: 0;
    }

    .svc::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, var(--overlay) 0, rgba(0,0,0,.9) 65%, rgba(0,0,0,.92));
        z-index: 0;
    }

    .svc > * {
        position: relative;
        z-index: 1;
    }

/* ===== Masthead ===== */
.svc-head {
    padding: 3rem 0 2rem;
}

.svc-title {
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1;
    font-size: clamp(2rem, 1rem + 3vw, 3.6rem);
    letter-spacing: .02em;
}

.svc-underline {
    width: 150px;
    height: 2px;
    background: var(--gold);
    margin: .5rem 0 1rem;
}

.svc-sub {
    color: var(--gold);
    letter-spacing: .04em;
    font-size: clamp(1rem,.9rem + .4vw,1.25rem);
}

.svc-arrow {
    width: 0;
    height: 0;
    border-top: 60px solid transparent;
    border-bottom: 60px solid transparent;
    border-right: 60px solid var(--gold);
}

.svc-badge {
    position: absolute;
    right: 2rem;
    top: 2rem;
    width: 110px;
    height: 110px;
    border-radius: 999px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .svc-badge span {
        color: #111;
        font-weight: 700;
        transform: rotate(-20deg);
        letter-spacing: .06em;
    }

/* ===== Features ===== */
.feature {
    padding: 1.5rem 1.25rem;
}

    .feature h3 {
        color: var(--brand-yellow);
        font-weight: 700;
        margin-bottom: .6rem;
        font-size: clamp(1.05rem, .95rem + .45vw, 2.5rem);
        line-height: 1.25;
        font-size: 20px;
    }

    .feature p {
        margin: 0 0 .6rem;
        color: #ddd;
        font-size: clamp(.95rem,.9rem + .2vw,1.05rem);
    }

.icon-wrap11 {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    /*border: 2px solid var(--gold);*/
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: .5rem;
    flex: none;
}

    .icon-wrap11 svg {
        width: 22px;
        height: 22px;
        fill: var(--gold);
    }

.m123 {
    width: 350px;
}
/* separators */
@media (min-width: 768px) {
    .feature {
        border-left: 1px solid rgba(239,196,59,.45);
    }

        .feature:first-child {
            border-left: none;
        }
}

@media (max-width: 767.98px) {
    .feature {
        border-top: 1px solid rgba(239,196,59,.22);
    }

        .feature:first-child {
            border-top: none;
        }
}

:root {
    --gold: #efc43b;
    --text: #f2f2f2;
    --overlay: rgba(0,0,0,.66);
}

.one-service {
    position: relative;
    color: var(--text);
    background: #000;
    overflow: hidden;
    padding-top: 50px;
    padding-bottom: 50px;
}

    .one-service .container {
        position: relative;
        z-index: 2;
    }

/* ===== Head ===== */
.os-head {
    padding: 2.25rem 0 1.25rem;
}

.os-title {
    color: var(--gold);
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
    font-size: clamp(1.8rem, 1rem + 3vw, 3.2rem);
    line-height: 1.1;
}

.os-badge {
    width: 500px;
    height: auto;
    border-radius: 999px;
    /* background: var(--gold); */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: .75rem;
    flex: none;
}

    .os-badge span {
        color: #121212;
        font-weight: 700;
        transform: rotate(-20deg);
        letter-spacing: .05em;
    }

/* ===== Two panels ===== */
.os-panel {
    position: relative;
    min-height: 520px;
    background-position: center;
    background-size: cover;
    border-radius: .4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    isolation: isolate;
    overflow: hidden;
}

    .os-panel::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        /* background: linear-gradient(0deg,var(--overlay),var(--overlay)); */
    }

.os-content {
    position: relative;
    z-index: 1;
    padding: 2rem 1.25rem;
    max-width: 700px;
}

.os-subtitle {
    color: var(--brand-yellow);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin-bottom: 1rem;
    font-size: 20px;
}

.os-text {
    /* font-size: clamp(1rem,.95rem + .25vw,3rem); */
    line-height: 1.6;
    font-size: 18px;
}

/* Divider giữa 2 panel */
@media (min-width: 768px) {
    .col-md-6:first-child .os-panel {
        /* border-right: 2px solid rgba(239,196,59,1); */
        border-bottom-right-radius: 6px;
        border-top-right-radius: 6px;
    }

    .col-md-6:last-child .os-panel {
        border-left: none;
        border-bottom-left-radius: 6px;
        border-top-left-radius: 6px;
    }
}

@media (max-width: 767.98px) {
    .col-md-6:last-child .os-panel {
        border-top: 2px solid rgba(239,196,59,.35);
    }
}

/* Ảnh nền – thay bằng ảnh của bạn */
.bg-left {
    background-image: url("/thanh-vien/38.webp");
}

.bg-right {
    background-image: url("/thanh-vien/39.webp");
}

/* Link nhỏ và nút mũi tên */
.os-note {
    position: absolute;
    left: 12px;
    bottom: 10px;
    font-size: .85rem;
    color: #cfcfcf;
    opacity: .7;
    z-index: 1;
    display: none;
}

.os-arrow {
    display: none;
    position: absolute;
    right: 14px;
    bottom: 12px;
    z-index: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
}

    .os-arrow svg {
        width: 18px;
        height: 18px;
        fill: var(--gold);
    }

.mm-11 {
    margin-top: 20px;
}

    .mm-11 ul {
    }

        .mm-11 ul li {
            list-style: none;
            font-size: 18px;
        }

.m2244 {
}

:root {
    --gold: #e7c9a1; /* màu vàng kem theo mockup */
    --text: #f2f2f2;
    --overlay: rgba(0,0,0,.55);
    --bg-url-11: url("/thanh-vien/40.webp");
}

.beauty-hero {
    position: relative;
    min-height: 88vh; /* cao như hero */
    color: var(--text);
    overflow: hidden;
    background: #000;
    padding-bottom: 0;
    padding-top: 70px;
}

    .beauty-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: var(--bg-url-11) center/cover no-repeat;
        z-index: 0;
        filter: saturate(1) contrast(1.05);
    }

    .beauty-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(0deg,var(--overlay),var(--overlay));
        z-index: 0;
    }

    .beauty-hero .container {
        position: relative;
        z-index: 1;
        height: 100%;
    }

/* ===== Top corners ===== */
.top-right-note {
    position: absolute;
    right: 1.25rem;
    top: 1.25rem;
    text-align: right;
    color: var(--gold);
    font-weight: 700;
    line-height: 1.25;
    /* max-width: 18ch; */
    font-size: 24px;
}

    .top-right-note small {
        display: block;
        font-weight: normal;
        color: #f0e6d8;
        opacity: .9;
        font-size: 15px;
    }

.icon-row {
    position: absolute;
    left: 1.25rem;
    top: 1.25rem;
    display: flex;
    gap: .75rem;
}

.circle-ic {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 2px solid #ffdfb3;
    opacity: .9;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

    .circle-ic svg {
        width: 26px;
        height: 26px;
        fill: none;
        stroke: #fff;
        stroke-width: 1.8;
    }

/* ===== Center brand ===== */
.brand-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    margin-bottom: 180px;
}

.brand-ring {
    position: absolute;
    inset: auto;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.18);
    pointer-events: none;
}

@media (max-width: 575.98px) {
    .brand-ring {
        width: 300px;
        height: 300px;
    }
}

.logo-mark svg {
    width: 70px;
    height: 70px;
    stroke: var(--gold);
    stroke-width: 2;
    fill: none;
}

.brand-name {
    font-family: 'Poppins',system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--gold);
    text-align: center;
    font-size: clamp(1.3rem,1rem + .9vw,2.1rem);
}

.brand-sub {
    opacity: .9;
    font-size: .9rem;
    letter-spacing: .12em;
}

.script-line {
    font-family: 'Great Vibes', cursive;
    color: var(--gold);
    font-size: clamp(1.6rem, 1.2rem + 1.8vw, 3rem);
    line-height: 1.2;
    margin-top: .25rem;
}

.desc {
    /* max-width: 900px; */
    /* margin-top: .5rem; */
    /* font-size: clamp(1rem,.95rem + .2vw,1.15rem); */
    /* line-height: 1.6; */
}

/* ===== Bottom left arrow ===== */
.corner-arrow {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    display: none;
}

    .corner-arrow svg {
        width: 20px;
        height: 20px;
        fill: #fff;
    }

/* ===== Layout helpers ===== */
.center-stage {
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 1rem 4.5rem; /* chừa chỗ cho các góc */
}

/* chỉnh nhẹ cho mobile */
@media (max-width: 767.98px) {
    .top-right-note {
        right: 1rem;
        top: 1rem;
        font-size: .95rem;
    }

    .icon-row {
        left: .75rem;
        top: .75rem;
    }

    .circle-ic {
        width: 46px;
        height: 46px;
    }
}

.home-1 p {
    font-size: 18px;
}

h2.display-6 {
    color: var(--brand-yellow) !important;
}

.beauty-hero .circle-ic img {
    width: 20px;
}

.script-line img {
    height: 75px;
}

.beauty-hero .desc {
    max-width: 900px;
    margin-top: .5rem;
    font-size: 18px;
    line-height: 1.6;
    color: var(--gold);
}

.copy-block-111 {
    color: var(--brand-yellow);
    font-size: 18px;
}

    .copy-block-111 p {
        color: var(--brand-yellow);
        font-size: 18px;
    }

.copy-block-112 {
    color: var(--brand-yellow);
    font-size: 25px;
}

:root {
    /* THAY 3 ẢNH NÀY BẰNG ẢNH CỦA BẠN */
    --img-left: url("https://images.unsplash.com/photo-1600180758890-6b94519a8ba6?q=80&w=1600&auto=format&fit=crop");
    --img-rt: url("https://images.unsplash.com/photo-1582582494700-7770a8b9df1e?q=80&w=1600&auto=format&fit=crop");
    --img-rb: url("https://images.unsplash.com/photo-1616469829935-c2f33eb0b37f?q=80&w=1600&auto=format&fit=crop");
    --gap: clamp(8px, 1vw, 16px);
    /* chiều cao 2 hàng bên phải (PC) để mô phỏng đúng tỉ lệ hình mẫu */
    --row-top: clamp(230px, 26vh, 320px);
    --row-bot: clamp(300px, 34vh, 440px);
}

.mosaic-section {
    background: #000;
    padding-top: 50px !important;
    padding-bottom: 50px !IMPORTANT;
}

.mosaic {
    display: grid;
    gap: var(--gap);
    grid-template-columns: 1fr; /* mobile: 1 cột */
}
/* PC: 2 cột, 2 hàng; ảnh trái chiếm 2 hàng */
@media (min-width: 768px) {
    .mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: var(--row-top) var(--row-bot);
        align-items: stretch;
    }

    .tile-left {
        grid-row: 1 / span 2;
        grid-column: 1;
    }

    .tile-rt {
        grid-row: 1;
        grid-column: 2;
    }

    .tile-rb {
        grid-row: 2;
        grid-column: 2;
    }
}

.tile {
    position: relative;
    background-position: center;
    background-size: cover;
    border-radius: .25rem;
    min-height: clamp(220px, 40vh, 360px); /* dùng cho mobile */
}

.tile-left {
    background-image: var(--img-left);
}

.tile-rt {
    background-image: var(--img-rt);
}

.tile-rb {
    background-image: var(--img-rb);
}

/* viền đen rõ giữa các ảnh như mockup (nền section đã là #000 nên chỉ cần gap) */
.container-fluid.px-0 .row, .mosaic {
    background: #000;
}

/* Nếu muốn overlay rất nhẹ để chữ/chi tiết ảnh rõ hơn (tùy chọn) */
.tile::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(0deg, rgba(0,0,0,.04), rgba(0,0,0,.04));
}

.mt-2 {
    margin-bottom: 38px;
}

.row-cols-sm-3 > * {
    width: 24%;
}

.member-section .section-inner {
    min-height: 70vh;
}

:root {
    --bg-img-444: url(/thanh-vien/48.webp);
}

.hx-hero .hero-bg-1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .6) 65%, rgba(0, 0, 0, .8)), var(--bg-img-444) center / cover no-repeat;
}

:root {
    --bg-url-34: url("/thanh-vien/49.webp"); /* THAY ảnh nền */
    --panel: rgba(0,0,0,.58);
    --heading: rgba(0,0,0,.72);
    --line: rgba(255,255,255,.6);
    --text: #f2f2f2;
}

.svc-packages {
    position: relative;
    color: var(--text);
    background: #0e0e0e;
    overflow: hidden;
    padding-bottom: 80px !important;
    padding-top: 80px !important;
}

    .svc-packages::before {
        content: "";
        position: absolute;
        inset: 0;
        background: var(--bg-url-34) center/cover no-repeat;
        z-index: 0;
        filter: saturate(0.95) contrast(1.05);
    }

    .svc-packages::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        background: linear-gradient(0deg, rgba(0,0,0,.42), rgba(0,0,0,.42));
    }

    .svc-packages > .container {
        position: relative;
        z-index: 1;
    }

.pkg {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .7rem;
    height: 100%;
}
/* Thanh tiêu đề */
.pkg-heading {
    width: min(92%, 560px);
    background: var(--heading);
    text-align: center;
    padding: .9rem .75rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 700;
    border-radius: .25rem;
    font-size: 20px;
    color: #ffdfb3;
    line-height: 27px;
}
/* Panel nội dung */
.pkg-panel {
    width: min(92%, 560px);
    background: var(--panel);
    border-radius: .25rem;
    backdrop-filter: blur(2px);
    padding: 1.25rem 1.1rem 1.4rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: .55rem;
    text-align: center;
    min-height: 280px; /* md+ sẽ gần giống mẫu */
    font-size: 15px;
    line-height: 18px;
}

    .pkg-panel > * {
        position: relative;
        z-index: 1;
    }

    .pkg-panel::before,
    .pkg-panel::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 85%;
        height: 2px;
        background: #ffdfb3;
        opacity: .85;
        z-index: 0;
    }

    .pkg-panel::before {
        top: .8rem;
    }

    .pkg-panel::after {
        bottom: .8rem;
    }

.pkg-sub {
    font-weight: 700;
    font-size: clamp(1.05rem,.95rem + .3vw,1.25rem);
    margin-top: .2rem;
    font-size: 20px;
    color: #ffdfb3;
    padding-top: 15px;
}

.pkg-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .pkg-list li {
        margin: .4rem 0;
        line-height: 1.55;
        color: #ffdfb3;
        font-size: 16px;
    }

/* mobile tweaks */
@media (max-width: 767.98px) {
    .pkg-panel {
        min-height: 0;
    }
}

:root {
    --gold: #d69c16; /* màu vàng thanh liên hệ */
    --gold-dark: #b68112;
    --text: #f2f2f2;
    --overlay: rgba(0,0,0,0);
    /* Thay ảnh nền của bạn ở đây */
    --bg-url: url("/thanh-vien/50.webp");
}

.ty-hero {
    position: relative;
    min-height: 92vh;
    color: var(--text);
    overflow: hidden;
    background: #0f0f0f;
    display: flex;
    align-items: center;
}

    .ty-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        background: var(--bg-url) center/cover no-repeat;
        filter: saturate(.95) contrast(1.05);
    }

    .ty-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        background: linear-gradient(0deg,var(--overlay),var(--overlay));
    }

    .ty-hero .container {
        position: relative;
        z-index: 1;
    }

.ty-title {
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-align: center;
    font-size: clamp(2.2rem, 2.5rem + 6vw, 9rem);
    line-height: 1;
    text-shadow: 0 4px 18px rgba(0,0,0,.35);
    color: #fff;
}

/* ===== Thanh vàng liên hệ ===== */
.info-bar {
    background: var(--gold);
    border-radius: .35rem;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
    overflow: hidden;
}

.info-item {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: .8rem .75rem;
    white-space: nowrap;
}

    .info-item:hover {
        background: linear-gradient(0deg, rgba(0,0,0,.05), rgba(0,0,0,.05));
    }

.ic {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,.25);
}

    .ic svg {
        width: 18px;
        height: 18px;
        fill: var(--gold-dark);
    }

.info-text {
    font-weight: 700;
    font-size: clamp(.95rem, .9rem + .2vw, 1.05rem);
    color: #fff;
    font-size: 15px;
}

/* ===== Nút tải PDF ===== */
.btn-gold {
    --bs-btn-bg: var(--gold);
    --bs-btn-border-color: var(--gold);
    --bs-btn-hover-bg: var(--gold-dark);
    --bs-btn-hover-border-color: var(--gold-dark);
    --bs-btn-color: #fff;
    --bs-btn-hover-color: #fff;
}

.btn-outline-gold {
    --bs-btn-color: #fff;
    --bs-btn-border-color: #fff;
    --bs-btn-hover-bg: #fff;
    --bs-btn-hover-border-color: #fff;
    --bs-btn-hover-color: #000;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

    .btn-icon svg {
        width: 18px;
        height: 18px;
        fill: currentColor;
    }

/* mobile spacing */
@media (max-width: 767.98px) {
    .info-item {
        justify-content: flex-start;
    }
}
.btn-icon {
    width: auto;
    height: auto;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, .08);
    color: #fff;
}