.tf-section {
    padding: 60px 0;
    background-color: #f8faff;
    font-family: 'Poppins', sans-serif;
}

.tf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.tf-header {
    text-align: center;
    margin-bottom: 50px;
}

.tf-header h2 {
    color: #0b1c39; /* Dark Blue */
    font-size: 32px;
    font-weight: 700;
}

.tf-header h2 span {
    color: #df0617; /* Red */
}

.tf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card Styling */
.tf-card {
    background: #fff;
    border-radius: 15px;
    text-align: center;
    transition: 0.4s;
    border: 1px solid #e1e8f0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.tf-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(11, 28, 57, 0.1);
}

/* Featured Card (Sedan) */
.tf-card.featured {
    border: 2px solid #df0617;
    position: relative;
}

.tf-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #df0617;
    color: #fff;
    padding: 2px 15px;
    font-size: 11px;
    border-radius: 0 0 10px 10px;
    text-transform: uppercase;
    font-weight: bold;
}

.tf-card-header {
    padding: 30px 20px;
    background: #0b1c39;
    color: #fff;
}

.tf-card-header h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.tf-card-header p {
    font-size: 13px;
    opacity: 0.8;
}

.tf-price-body {
    padding: 30px 20px;
    flex-grow: 1;
}

.tf-rate {
    margin-bottom: 25px;
    color: #0b1c39;
}

.tf-rate .amount {
    font-size: 48px;
    font-weight: 800;
}

.tf-rate .currency, .tf-rate .per {
    font-size: 18px;
    font-weight: 600;
}

.tf-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.tf-features li {
    font-size: 13px;
    color: #555;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.tf-features li i {
    color: #df0617;
    margin-right: 10px;
    width: 20px;
}

.tf-footer {
    padding: 20px;
    background: #fcfcfc;
}

.tf-btn {
    display: block;
    background: #0b1c39;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.tf-btn:hover {
    background: #df0617;
}

/* Tablet & Mobile Responsive */
@media (max-width: 1024px) {
    .tf-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .tf-grid { grid-template-columns: 1fr; }
}


.dr-details {
    background: #ffffff;
    border: 1px solid #e1e4e8;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 30px 200px;
    border-radius: 12px;
}


.dr-detail-box h3 {
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 21px;
}

.dr-list li {
    font-size: 14.5px;
    margin-bottom: 15px;
    color: #4a4a4a;
}

.dr-list li strong {
    color: #0b1c39;
    font-weight: 600;
}

/* Important Notes Box */
.dr-important-notes {
    background-color: #fff9f9;
    border-left: 4px solid #df0617;
    padding: 20px;
    margin-top: 30px;
}

.dr-important-notes h4 {
    color: #df0617;
    margin-bottom: 15px;
    font-size: 18px;
}

.dr-note-list {
    padding-left: 20px;
    color: #555;
    font-size: 13.5px;
}

.dr-note-list li {
    margin-bottom: 8px;
}

.dr-peak-warning {
    margin-top: 15px;
    font-weight: bold;
    color: #df0617;
    font-size: 15px;
}