:root {
    --primary-color: #10b5cb;      /* Cyan */
    --secondary-color: #f97415;    /* Orange */
    --accent-color: #f97415;       /* Orange */
    --text-dark: #222222;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #2d2d2d;            /* Dark Gray for Footer */
    --card-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.footer-row2 .navbar-brand img{
    height:170px !important
}

.text-justify{
    text-align: justify;
}
.main-header{
    background-color: #fff;
    border-bottom: 2px solid var(--secondary-color) !important;
}
.nav-bg-b .custom-nav .nav-list li a.menu-links{
    color: var(--primary-color)
}

.ptb-30{
    padding : 30px 0;
}

.ptb-60{
    padding : 60px 0;
}

.tariff-redesign {
    background-color: var(--bg-light);
}

.tariff-box-premium {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    border-top-color: var(--primary-color) !important;
}

.tariff-box-premium:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow) !important;
}

.vehicle-offer {
    background-color: #fff;
    transition: background-color 0.3s ease;
    border-color: rgba(0,0,0,0.05) !important;
}

.vehicle-offer:hover {
    background-color: rgba(254, 180, 21, 0.05);
    border-color: var(--secondary-color) !important;
}

.tariff-stats span {
    font-size: 0.95rem;
}

.tariff-stats .fw-bold {
    color: var(--primary-color);
}

.btn-danger {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-warning {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

.bg-danger {
    background-color: var(--primary-color) !important;
}

.text-danger {
    color: var(--primary-color) !important;
}

.italic {
    font-style: italic;
}

.footer-premium {
    background: var(--bg-dark);
    color: #eee;
    padding: 60px 0 20px;
}

.footer-logo-text {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contact-item i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;

.footer-social-media-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-media-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-media-icons a:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(249, 116, 21, 0.3);
}