:root { 
    --gold: #b89551; 
    --light-bg: #f4f4f4; 
    --text-dark: #1a1a1a; 
    --gray-line: #e0e0e0; 
    --dark: #1a1a1a; 
    --light-gray: #f8f9fa;
    --white: #ffffff;
}

body { font-family: 'Roboto', sans-serif; color: var(--text-dark); background: #fff; }
h1{display: none;}
h1, h2, h3, h4, .navbar-brand { font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: 2px; }
a {text-decoration: none;}

/* --- MENU FIXED & TRANSPARENT --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    background: transparent;
    transition: all 0.4s ease-in-out;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-bottom: 2px solid var(--gold);
}
.nav-link {
    color: var(--white) !important;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-left: 20px;
    transition: 0.3s;
}
.navbar.scrolled .nav-link {
    color: #1a1a1a !important;
}
.navbar.scrolled .nav-link:hover { color: var(--gold) !important; }
.navbar-brand { 
    font-weight: 700; 
    color: var(--white) !important; 
    font-size: 1.6rem; 
}
.navbar.scrolled .navbar-brand { color: var(--gold) !important; }
.navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
}
.logo-custom {
    height: 45px;
    width: auto;
    transition: all 0.4s ease;
    filter: brightness(0) invert(1); 
}
.brand-text {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

/* --- KHI CUỘN TRANG (Scrolled) --- */
.navbar.scrolled .logo-custom {
    height: 38px;
    filter: brightness(0) saturate(100%) invert(67%) sepia(13%) saturate(1313%) hue-rotate(3deg) brightness(93%) contrast(88%);
}
.navbar.scrolled .brand-text {
    color: var(--gold) !important;
    font-size: 1.2rem;
}
@media (max-width: 991px) {
    .logo-custom { height: 35px; }
    .brand-text { font-size: 1.1rem; }
}

/* 1. Banner lớn */
.hero-banner {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/banner_home.jpg') center/cover no-repeat;
    display: flex; align-items: center; justify-content: center; text-align: center; color: #fff;
}
@media (min-width: 1200px) {
    .hero-banner {
        background-attachment: fixed;
    }
}
.hero-box { border: 1px solid var(--gold); padding: 50px; background: rgba(0,0,0,0.2); backdrop-filter: blur(3px); animation: fadeInUp 1s ease-out; }
.hero-box h1 { font-size: 3.5rem; font-weight: 700; border-bottom: 2px solid var(--gold); display: inline-block; padding-bottom: 10px; margin-bottom: 20px; }

/* 2. VỀ CHÚNG TÔI - Premium Style */
.about-section {
    background-color: #fff;
    overflow: hidden;
}
.about-image-wrapper {
    position: relative;
    padding: 20px;
}
.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    border: 2px solid var(--gold);
    z-index: 0;
}
.about-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: 20px 20px 0px var(--light-bg);
}
.about-content {
    padding-left: 50px;
}
.about-subtitle {
    color: var(--gold);
    font-family: 'Montserrat';
    font-weight: 600;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 15px;
}
.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}
.stat-box {
    margin-top: 40px;
    border-top: 1px solid var(--gray-line);
    padding-top: 30px;
}
.stat-number {
    font-family: 'Montserrat';
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}
.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
}

/* --- SẢN PHẨM ĐÁ - ICON LUXURY STYLE --- */
.product-item-new {
    background: #fff;
    padding: 50px 30px;
    height: 100%;
    text-align: center;
    border: 1px solid var(--gray-line);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.product-item-new::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 0;
    background: var(--dark);
    z-index: -1;
    transition: all 0.4s ease;
}
.product-item-new:hover::before {
    height: 100%;
}
.product-item-new i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 25px;
    display: inline-block;
    transition: all 0.4s ease;
}
.product-item-new h5 {
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    margin-bottom: 15px;
    color: black;
}
.product-item-new p {
    font-size: 0.85rem;
    color: #777;
    transition: all 0.4s ease;
    line-height: 1.6;
}
.product-item-new:hover i {
    transform: translateY(-10px) scale(1.1);
    color: var(--gold);
}
.product-item-new:hover h5 {
    color: var(--white);
}

.product-item-new:hover p {
    color: rgba(255,255,255,0.7);
}
.product-accent {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto;
    transition: width 0.4s ease;
}
.product-item-new:hover .product-accent {
    width: 80px;
}


/* General Sections */
.section-padding { padding: 100px 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-weight: 700; position: relative; display: inline-block; padding-bottom: 15px; }
.section-title h2::after { content: ''; position: absolute; bottom: 0; left: 25%; width: 50%; height: 2px; background: var(--gold); }

/* 3. Dịch vụ (4 hình lớn) */
.service-grid { position: relative; overflow: hidden; height: 500px; cursor: pointer; }
.service-grid img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.service-grid:hover img { transform: scale(1.1); }
.service-overlay { 
    position: absolute; inset: 0; background: linear-gradient(transparent, rgba(0,0,0,0.8)); 
    display: flex; align-items: flex-end; padding: 30px; color: #fff; 
}

/* 4. Sản phẩm */
.product-item { border: 1px solid var(--gray-line); padding: 40px 20px; transition: 0.3s; text-align: center; }
.product-item:hover { border-color: var(--gold); background: var(--light-bg); }
.product-item i { color: var(--gold); font-size: 2.5rem; margin-bottom: 20px; }

/* 6. Hình ảnh thi công */
.gallery-img { height: 280px; width: 100%; object-fit: cover; filter: grayscale(100%); transition: 0.4s; }
.gallery-img:hover { filter: grayscale(0%); transform: translateY(-5px); }

/* Buttons */
.btn-gold { background: var(--gold); color: white; border-radius: 0; padding: 15px 35px; border: 1px solid var(--gold); }
.btn-gold:hover { background: transparent; color: var(--gold); }
.btn-outline { background: transparent; color: white; border: 1px solid white; border-radius: 0; padding: 15px 35px; }

/* --- SECTION QUOTE & CONTACT --- */
.quote-container {
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    overflow: hidden;
    border-radius: 4px;
}
.contact-info-side {
    background: var(--dark);
    color: #fff;
    padding: 50px;
}
.form-side {
    padding: 50px;
}
.form-side .form-control {
    padding: 15px 0;
    font-size: 0.9rem;
    background: transparent;
    transition: all 0.3s ease;
}
.form-side .form-control:focus {
    box-shadow: none;
    border-color: var(--gold);
}
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(184, 149, 81, 0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}
.map-wrapper {
    height: 250px;
    width: 100%;
    filter: grayscale(100%) invert(90%) contrast(90%);
    transition: 0.5s;
    border: 1px solid rgba(255,255,255,0.1);
}
.map-wrapper:hover {
    filter: grayscale(0%);
}

/* --- GROUP: BONSAI SECTION --- */
.bonsai-section {
    background: linear-gradient(rgba(15, 20, 15, 0.9), rgba(15, 20, 15, 0.9)), 
    url('../images/banner_bosai.jpg') center/cover fixed;
    color: #fff;
    padding: 100px 0;
}
.bonsai-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(184, 149, 81, 0.2);
    padding: 40px 25px;
    transition: all 0.4s ease;
    text-align: center;
    backdrop-filter: blur(10px);
}
.bonsai-card:hover {
    background: rgba(184, 149, 81, 0.08);
    border-color: var(--gold);
    transform: translateY(-10px);
}
.bonsai-icon {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 25px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(184, 149, 81, 0.3));
}
.bonsai-card h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.bonsai-card p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.7;
}
.btn-bonsai {
    margin-top: 20px;
    padding: 10px 25px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: 0.3s;
}
.btn-bonsai:hover {
    background: var(--gold);
    color: #fff;
}

/* 11. Nút nổi */
.floating-contact {
    position: fixed;
    bottom: 25px;
    right: 20px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
}
.contact-btn:hover {
    transform: scale(1.1);
    color: white;
}
.contact-btn span {
    font-size: 11px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
}
.zalo-color { background: #0068ff; }
.fb-color   { background: #0084ff; }
.call-color { background: #d42020; }

/* Nút Back to Top */
.to-top {
    background: var(--dark);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 18px;
    opacity: 0; /* Ẩn mặc định */
    visibility: hidden;
    transform: translateY(20px);
}
.to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #d42020;
    border-radius: 50%;
    animation: pulse-animation 1.5s infinite;
}

@keyframes pulse-animation {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* --- FOOTER MODERN LUXURY --- */
.footer-modern {
    background-color: #0f0f0f; /* Đen sâu hơn */
    border-top: 1px solid rgba(184, 149, 81, 0.2);
}
.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-link {
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 12px;
    font-size: 0.9rem;
}
.footer-link:hover {
    color: var(--gold);
    padding-left: 5px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}
.footer-heading {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}
.footer-bottom-line {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
}
.footer-logo-text img{
    height: 40px;
    filter: brightness(0) saturate(100%) invert(67%) sepia(13%) saturate(1313%) hue-rotate(3deg) brightness(93%) contrast(88%);
}

/* --- GROUP: CATEGORY PAGE LAYOUT --- */
.page-header-banner {
    padding: 220px 0 80px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/banner_home.jpg') center/cover no-repeat;
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.page-header-banner .fw-bold {
    width: 70%;
    margin: 0 auto;
    line-height: 50px;
}
.editorial-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.editorial-slogan {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
    opacity: 0.85;
    margin-bottom: 30px;
}
.editorial-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.line-gold {
    width: 40px;
    height: 1px;
    background-color: #b89551;
}
.editorial-brand-name {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    color: #ffffff;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .editorial-title {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }
    .editorial-slogan {
        font-size: 0.8rem;
    }
}
.breadcrumb-custom {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.breadcrumb-custom a { color: rgba(255,255,255,0.7); transition: 0.3s; }
.breadcrumb-custom a:hover { color: var(--gold); }
/* --- NEWS GRID: THE FLOATING CANVAS --- */
.news-interlock-item {
    background: transparent;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.4s ease;
}
.interlock-img-wrapper {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    z-index: 1;
    width: 90%;
    border-radius: 4px;
    overflow: hidden;
}
.interlock-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.interlock-content {
    background: #fff;
    width: 90%; 
    margin: -60px 0 0 auto;
    padding: 15px 15px;
    position: relative;
    z-index: 2;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0,0,0,0.2);
    border-bottom: 3px solid #b89551;
    border-right: 3px solid #b89551;
    border-radius: 4px;
    height: 100px;
    overflow: hidden;
}
.news-interlock-item:hover .interlock-content {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(184, 149, 81, 0.15);
}
.news-interlock-item:hover img {
    transform: scale(1.1);
}
.interlock-meta {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #b89551;
    margin-bottom: 8px;
    font-weight: 600;
}
.interlock-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    color: #222;
    transition: color 0.3s;
    line-height: 1.4;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.category-box {
    background: #fff;
    border: 1px solid var(--gray-line);
    padding: 25px;
    position: relative;
}
.category-box .sidebar-title {
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--gold);
    display: table;
    font-weight: 600;
}
.filter-list { 
    list-style: none; 
    padding: 0; 
    margin: 0;
}
.filter-list li { 
    border-bottom: 1px dashed #eee;
    transition: all 0.3s ease;
}
.filter-list li:last-child {
    border-bottom: none;
}
.filter-list a { 
    color: var(--dark); 
    font-size: 0.9rem; 
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    text-decoration: none;
    transition: all 0.3s;
}
.cat-count {
    font-family: 'Montserrat';
    font-size: 0.7rem;
    color: #bbb;
    background: var(--light-bg);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}
.filter-list li:hover {
    padding-left: 10px;
    border-bottom: 1px solid var(--gold);
}
.filter-list li:hover a {
    color: var(--gold);
}
.filter-list li:hover .cat-count {
    background: var(--gold);
    color: #fff;
    transform: rotate(360deg);
}
/* --- CUSTOM PAGINATION LUXURY --- */
#pagination {
    margin-top: 50px;
    padding: 20px 0;
}
#pagination .pagination {
    display: inline-flex;
    list-style: none;
    padding: 0;
    gap: 10px;
}
#pagination .pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid #eee;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: #fff;
    border-radius: 4px;
}
#pagination .pagination li a:hover {
    border-color: #b89551;
    color: #b89551;
    background: #fdfaf5;
    transform: translateY(-3px);
}
#pagination .pagination li.active a {
    background-color: #b89551;
    border-color: #b89551;
    color: #fff !important;
    box-shadow: 0 5px 15px rgba(184, 149, 81, 0.3);
}
#pagination .pagination li:last-child a {
    font-size: 1.2rem;
    line-height: 1;
}
@media (max-width: 576px) {
    #pagination .pagination li a {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
}
/* --- STICKY SIDEBAR EFFECT --- */
.sidebar-sticky-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    z-index: 10;
    transition: all 0.3s ease;
}
.sidebar-sticky-wrapper .category-box {
    box-shadow: 0 5px 25px rgba(0,0,0,0.03);
    border-radius: 4px;
    background: #fff;
}
@media (max-width: 991px) {
    .sidebar-sticky-wrapper {
        position: static;
        margin-bottom: 40px;
    }
}

/* --- TOÀN BỘ KHỐI NỘI DUNG (CONTAINER) --- */
.article-paper-box {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    margin-bottom: 50px;
}
.post-header-split {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--gold);
    margin-bottom: 40px;
}
.header-split-img {
    flex: 0 0 50%;
}
.img-frame-43 {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.img-frame-43 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.header-split-text {
    flex: 1;
    min-width: 0;
}
.header-split-text .small{
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #b89551;
    margin-bottom: 8px;
    font-weight: 600;
}
.display-title-modern {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 15px;
}
.post-meta-label {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.content-body-styled {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #333333 !important;
    text-align: justify;
}
.content-body-styled p {
    margin-bottom: 25px;
    color: #333333 !important;
}
.content-body-styled p,
.content-body-styled b,
.content-body-styled em,
.content-body-styled span,
.content-body-styled strong {
    color: #333333 !important;
}
.content-body-styled img {
    width: 90% !important;
    height: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 10px !important;
}
@media (max-width: 991px) {
    .post-header-split {
        flex-direction: column;
    }
    .header-split-img, .header-split-text {
        flex: 0 0 100%;
    }
}

/* Cột Sidebar Bài liên quan */
.sidebar-heading {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid #b89551;
    padding-bottom: 10px;
    margin-bottom: 25px;
    color: #333;
}
.related-post-entry {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
    align-items: center;
    border: 1px dashed var(--gold);
    border-radius: 4px;
    overflow: hidden;
}
.related-post-entry:hover {
    border: 1px solid var(--gold);
}
.related-post-entry:hover .sidebar-title-text {
    color: #b89551;
}
.sidebar-img-thumb {
    flex: 0 0 100px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 2px;
}
.sidebar-img-thumb img {
    width: 100%; height: 100%; object-fit: cover;
}
.sidebar-title-text {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: 0.3s;
}
.sidebar-date {
    font-size: 0.75rem;
    color: #999;
    display: block;
    margin-top: 5px;
}
.cta-box {
    background: #451a03;
    color: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    z-index: 10;
    transition: all 0.3s ease;
}
.cta-box .title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.cta-box .info {
    color: white;
    font-size: 14px;
}
.cta-box .btn-call {
    display: block;
    background: white;
    color: #451a03;
    padding: 0.8rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-weight: 700;
    text-decoration: unset;
    transition: all 0.2s ease;
}
.cta-box .btn-call:hover {
    background: var(--gold);
    color: white;
}