/* =========================================================
   LV.T LUXURY
   BẢNG GIÁ
   STYLE ĐƠN GIẢN - GIỐNG FORM TRANG THAM KHẢO
========================================================= */


/* =========================================================
   ROOT
========================================================= */

.pricing-page {
    --pricing-gold: #d4af37;
    --pricing-dark: #111111;
    --pricing-text: #333333;
    --pricing-muted: #777777;
    --pricing-border: #dddddd;
    --pricing-light: #f7f7f7;
    --pricing-white: #ffffff;

    width: 100%;
    background: #ffffff;
    color: var(--pricing-text);

    font-family: Arial, Helvetica, sans-serif;

    line-height: 1.7;
}


/* =========================================================
   RESET RIÊNG
========================================================= */

.pricing-page *,
.pricing-page *::before,
.pricing-page *::after {
    box-sizing: border-box;
}


.pricing-page img {
    max-width: 100%;
    height: auto;
}


/* =========================================================
   CONTAINER
========================================================= */

.pricing-container {
    width: min(1100px, calc(100% - 40px));

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   INTRO
========================================================= */

.pricing-intro {
    width: 100%;

    padding: 55px 0 45px;

    background: #ffffff;

    border-bottom: 1px solid #eeeeee;
}


.pricing-intro-content {
    padding-top: 30px;
    display: flex;

    align-items: flex-start;

    gap: 35px;
}


/* =========================================================
   LOGO
========================================================= */

.pricing-logo {
    width: 150px;

    flex: 0 0 150px;

    display: flex;

    align-items: flex-start;
    justify-content: center;
}


.pricing-logo img {
    width: 125px;
    height: 125px;

    object-fit: contain;

    border-radius: 0;
}


/* =========================================================
   INTRO TEXT
========================================================= */

.pricing-intro-text {
    flex: 1;

    min-width: 0;
}


.pricing-intro h1 {
    margin: 0 0 25px;

    color: #222222;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 34px;

    font-weight: 600;

    line-height: 1.25;

    letter-spacing: 0;
}


.pricing-intro h1::after {
    content: "";

    display: block;

    width: 55px;
    height: 2px;

    margin-top: 15px;

    background: var(--pricing-gold);
}


.pricing-intro p {
    margin: 0 0 18px;

    color: #555555;

    font-size: 15px;

    line-height: 1.85;
}


.pricing-intro p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   SECTION
========================================================= */

.pricing-section {
    width: 100%;

    padding: 45px 0;

    background: #ffffff;
}


.pricing-section+.pricing-section {
    border-top: 1px solid #eeeeee;
}


/* =========================================================
   SECTION TITLE
========================================================= */

.pricing-section h2,
.pricing-note h2 {
    margin: 0 0 12px;

    color: #222222;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 25px;

    font-weight: 600;

    line-height: 1.35;

    text-transform: uppercase;
}


.pricing-section h2::after,
.pricing-note h2::after {
    content: "";

    display: block;

    width: 45px;
    height: 2px;

    margin-top: 10px;

    background: var(--pricing-gold);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.pricing-description {
    margin: 0 0 22px;

    color: #666666;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   TABLE WRAPPER
========================================================= */

.pricing-table-wrapper {
    width: 100%;

    overflow-x: auto;

    border: 1px solid var(--pricing-border);

    background: #ffffff;
}


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

.pricing-table {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.pricing-table--architecture .col-stt { width: 7%; }
.pricing-table--architecture .col-item { width: 24%; }
.pricing-table--architecture .col-content { width: 54%; }
.pricing-table--architecture .col-price { width: 15%; }


/* =========================================================
   TABLE HEAD
========================================================= */

.pricing-table thead th {
    padding: 14px 15px;

    background: #f3f3f3;

    color: #222222;

    border-right: 1px solid #dddddd;
    border-bottom: 1px solid #cccccc;

    font-size: 12px;

    font-weight: 700;

    text-align: left;

    vertical-align: middle;

    letter-spacing: .04em;
}


.pricing-table thead th:last-child {
    border-right: 0;
}


/* =========================================================
   COLUMN WIDTH
========================================================= */

.pricing-table th:nth-child(1),
.pricing-table td:nth-child(1) {
    width: 65px;

    text-align: center;
}


.pricing-table th:nth-child(2),
.pricing-table td:nth-child(2) {
    width: 25%;
}


.pricing-table th:nth-child(3),
.pricing-table td:nth-child(3) {
    width: auto;
}


.pricing-table th:nth-child(4),
.pricing-table td:nth-child(4) {
    width: 130px;
}


/* =========================================================
   TABLE BODY
========================================================= */

.pricing-table tbody td {
    padding: 16px 15px;

    color: #555555;

    border-right: 1px solid #e2e2e2;

    border-bottom: 1px solid #e2e2e2;

    background: #ffffff;

    font-size: 14px;

    line-height: 1.7;

    vertical-align: top;
}


.pricing-table tbody tr:last-child td {
    border-bottom: 0;
}


.pricing-table tbody td:last-child {
    border-right: 0;
}


/* =========================================================
   STT
========================================================= */

.pricing-table tbody td:first-child {
    color: #777777;

    font-size: 13px;

    font-weight: 600;
}


/* =========================================================
   HẠNG MỤC
========================================================= */

.pricing-table tbody td:nth-child(2) {
    color: #222222;

    font-weight: 600;
}


/* =========================================================
   PRICE
========================================================= */

.pricing-table td.price {
    color: var(--pricing-gold);

    font-weight: 700;

    white-space: nowrap;
}


/* =========================================================
   HOVER
   RẤT NHẸ - KHÔNG CẦU KỲ
========================================================= */

.pricing-table tbody tr:hover td {
    background: #fafafa;
}


/* =========================================================
   NOTE
========================================================= */

.pricing-note {
    width: 100%;

    padding: 45px 0;

    background: #f7f7f7;

    border-top: 1px solid #eeeeee;
}


.pricing-note h2 {
    font-size: 24px;
}


.pricing-note>.pricing-container>p {
    max-width: 850px;

    margin: 0 0 20px;

    color: #555555;

    font-size: 14px;

    line-height: 1.8;
}


.pricing-note ul {
    margin: 0;

    padding-left: 20px;
}


.pricing-note li {
    margin-bottom: 9px;

    color: #555555;

    font-size: 14px;

    line-height: 1.8;
}


.pricing-note li:last-child {
    margin-bottom: 0;
}


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

.pricing-contact {
    width: 100%;

    padding: 55px 0;

    background: #ffffff;

    border-top: 1px solid #eeeeee;

    text-align: left;
}


.pricing-contact-label {
    display: block;

    margin-bottom: 10px;

    color: var(--pricing-gold);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .12em;
}


.pricing-contact h2 {
    margin: 0 0 12px;

    color: #222222;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 32px;

    font-weight: 600;

    line-height: 1.3;
}


.pricing-contact p {
    max-width: 700px;

    margin: 0 0 25px;

    color: #666666;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   CONTACT INFO
========================================================= */

.pricing-contact-info {
    display: flex;

    flex-wrap: wrap;

    gap: 35px;

    margin-bottom: 28px;
}


.pricing-contact-info>div {
    display: flex;

    flex-direction: column;

    gap: 3px;
}


.pricing-contact-info strong {
    color: #222222;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .08em;
}


.pricing-contact-info a {
    color: var(--pricing-gold);

    font-size: 15px;

    font-weight: 600;

    text-decoration: none;
}


.pricing-contact-info a:hover {
    color: #a88920;

    text-decoration: underline;
}


/* =========================================================
   BUTTON
========================================================= */

.btn-price {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 0 25px;

    background: var(--pricing-gold);

    color: #111111;

    border: 1px solid var(--pricing-gold);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .08em;

    text-decoration: none;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}


.btn-price:hover {
    background: #111111;

    border-color: #111111;

    color: #ffffff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .pricing-container {
        width: calc(100% - 30px);
    }


    .pricing-intro {
        padding: 40px 0;
    }


    .pricing-intro-content {
        flex-direction: column;

        gap: 25px;
    }


    .pricing-logo {
        width: auto;

        flex: none;

        justify-content: flex-start;
    }


    .pricing-logo img {
        width: 90px;
        height: 90px;
    }


    .pricing-intro h1 {
        font-size: 29px;
    }


    .pricing-section {
        padding: 38px 0;
    }


    .pricing-section h2,
    .pricing-note h2 {
        font-size: 22px;
    }


    .pricing-table-wrapper {
        overflow-x: auto;
    }


    .pricing-contact {
        padding: 45px 0;
    }


    .pricing-contact h2 {
        font-size: 28px;
    }


    .pricing-contact-info {
        gap: 25px;

        flex-direction: column;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

    .pricing-container {
        width: calc(100% - 24px);
    }


    .pricing-intro {
        padding: 32px 0;
    }


    .pricing-intro h1 {
        font-size: 26px;
    }


    .pricing-intro p {
        font-size: 14px;
    }


    .pricing-section {
        padding: 32px 0;
    }


    .pricing-section h2,
    .pricing-note h2 {
        font-size: 20px;
    }


    .pricing-description {
        font-size: 13px;
    }


    .pricing-table {
        min-width: 650px;
    }


    .pricing-table thead th {
        padding: 12px 10px;

        font-size: 11px;
    }


    .pricing-table tbody td {
        padding: 13px 10px;

        font-size: 13px;
    }


    .pricing-contact-label {
        font-size: 10px;
    }


    .pricing-contact h2 {
        font-size: 25px;
    }


    .pricing-contact p {
        font-size: 13px;
    }


    .btn-price {
        width: 100%;
    }

}