﻿
.fun-facts {
    margin-bottom: 60px;
}

.fun-facts .fact-item {
    background-color: #fafafa;
    border-radius: 10px;
    padding: 25px 30px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.03);
}

    .fun-facts .fact-item h2 {
        color: #f35525;
        font-size: 36px;
        font-weight: 800;
        margin: 0;
        line-height: 1;
    }

    .fun-facts .fact-item p {
        color: #1e1e1e;
        font-size: 15px;
        font-weight: 600;
        margin: 0;
        line-height: 1.3;
    }

    .fun-facts .fact-item::after {
        content: '';
        position: absolute;
        width: 30px;
        height: 30px;
        background-color: #f35525;
        border-radius: 50%;
        right: -15px;
        top: -15px;
        opacity: 0.85;
    }


.best-deal {
    padding: 90px 0px;
}

    .best-deal .section-heading h2 {
        font-size: 40px;
        font-weight: 800;
        line-height: 50px;
        margin-top: 15px;
    }

    .best-deal .nav-tabs {
        border-bottom: none;
        gap: 15px;
    }

    .best-deal .nav-link {
        background-color: #1e1e1e !important;
        color: #fff !important;
        border: none !important;
        border-radius: 5px !important;
        padding: 12px 28px !important;
        font-weight: 600;
        font-size: 15px;
        transition: all 0.3s ease;
    }

        .best-deal .nav-link.active {
            background-color: #f35525 !important;
            color: #fff !important;
        }


    .best-deal .info-table {
        background-color: #fff;
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.08);
        padding: 25px 25px;
        border-radius: 10px;
        width: 100%;
    }

        .best-deal .info-table ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .best-deal .info-table ul li {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 14px 0;
                border-bottom: 1px solid #f5f5f5;
                color: #aaa;
                font-size: 14px;
                font-weight: 500;
            }

                .best-deal .info-table ul li:last-child {
                    border-bottom: none;
                }

                .best-deal .info-table ul li span {
                    font-weight: 700;
                    color: #1e1e1e;
                    font-size: 16px;
                }

                    .best-deal .info-table ul li span.area-highlight {
                        color: #f35525;
                        font-weight: 800;
                    }

    .best-deal h4 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 25px;
        color: #1e1e1e;
    }

    .best-deal p {
        color: #4a4a4a;
        line-height: 1.8;
        font-size: 14px;
        margin-bottom: 25px;
    }

    .best-deal .main-button {
        margin-top: 20px;
        text-align: center;
    }

        .best-deal .main-button a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #1e1e1e;
            color: #fff;
            font-size: 14px;
            font-weight: 500;
            padding: 12px 30px;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s;
            line-height: normal;
        }

            .best-deal .main-button a:hover {
                background-color: #f35525;
                color: #fff;
            }

