
/* Tariff Section Styles */
.tariff-section {
    position: relative;
    padding: 100px 0 70px 0;
    background-color: #f0f4f8;
    background-image: radial-gradient(#d1d9e6 1px, transparent 1px);
    background-size: 30px 30px;
}

.tariff-section .sec-title {
    margin-bottom: 60px;
}

.tariff-table-container {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 60px;
    overflow-x: auto;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tariff-table-container:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    transform: translateY(-10px);
}

.tariff-table-container h3 {
    font-size: 28px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 30px;
    position: relative;
    padding-left: 20px;
}

.tariff-table-container h3:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 30px;
    background: linear-gradient(to bottom, #ff5e14, #ff9966);
    border-radius: 10px;
}

.custom-tariff-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    margin-bottom: 0;
}

.custom-tariff-table thead th {
    background: #1e293b;
    color: #fff;
    padding: 22px 15px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    border: none;
    text-align: center;
}

.custom-tariff-table thead th:first-child {
    border-radius: 12px 0 0 12px;
    text-align: left;
}

.custom-tariff-table thead th:last-child {
    border-radius: 0 12px 12px 0;
}

.custom-tariff-table tbody tr {
    transition: all 0.3s ease;
    background: #f8fafc;
}

.custom-tariff-table tbody td {
    padding: 20px 15px;
    vertical-align: middle;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    color: #4a5568;
    font-size: 15px;
    text-align: center;
}

.custom-tariff-table tbody td:first-child {
    text-align: left;
    font-weight: 700;
    color: #1e293b;
    border-left: 1px solid transparent;
    border-radius: 12px 0 0 12px;
}

.custom-tariff-table tbody td:last-child {
    border-right: 1px solid transparent;
    border-radius: 0 12px 12px 0;
}

.custom-tariff-table tbody tr:hover {
    transform: scale(1.01);
    z-index: 10;
}

.custom-tariff-table tbody tr:hover td {
    background-color: #fff;
    color: #ff5e14;
    border-color: #ffeadb;
    box-shadow: 0 5px 15px rgba(255, 94, 20, 0.1);
}

.vehicle-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.vehicle-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #fff1eb 0%, #ace0f9 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff5e14;
    font-size: 20px;
    transition: all 0.3s ease;
}

.custom-tariff-table tbody tr:hover .vehicle-icon {
    transform: rotate(10deg);
    background: linear-gradient(135deg, #ff5e14 0%, #ff9966 100%);
    color: #fff;
}

.price-tag {
    font-weight: 800;
    color: #ff5e14;
    font-size: 16px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated-row {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

/* Terms Section */
.terms-section {
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    border-left: 8px solid #ff5e14;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

.terms-section:after {
    content: '\f15c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 150px;
    color: rgba(0,0,0,0.03);
    transform: rotate(-15deg);
}

.terms-section h4 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 15px;
}

.terms-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.terms-list li {
    position: relative;
    padding: 15px 15px 15px 45px;
    background: #f8fafc;
    border-radius: 12px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.terms-list li:hover {
    background: #fff1eb;
    color: #1e293b;
    transform: translateX(5px);
}

.terms-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff5e14;
    font-size: 16px;
}

/* Responsive Tables */
@media (max-width: 1200px) {
    .tariff-table-container {
        padding: 30px;
    }
}

@media (max-width: 991px) {
    .tariff-section {
        padding: 80px 0;
    }
    .custom-tariff-table {
        min-width: 1000px;
    }
}

@media (max-width: 767px) {
    .tariff-table-container {
        padding: 20px;
        border-radius: 16px;
    }
    .tariff-table-container h3 {
        font-size: 22px;
    }
    .terms-section {
        padding: 30px;
    }
    .terms-list {
        grid-template-columns: 1fr;
    }
}
