/* Trailer Rental System CSS */
.trf-container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.trf-hero { background: linear-gradient(135deg, #0056a3 0%, #003f73 100%); color: white; padding: 60px 0; margin-bottom: 40px; }
.trf-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.trf-hero-title { font-size: 2.8rem; font-weight: 800; margin-bottom: 20px; }
.trf-booking-widget { background: white; border-radius: 20px; padding: 30px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.trf-booking-form { display: flex; flex-direction: column; gap: 15px; }
.trf-form-group { display: flex; flex-direction: column; gap: 6px; }
.trf-form-group label { font-weight: 700; font-size: 0.75rem; text-transform: uppercase; color: #0056a3; }
.trf-form-group input, .trf-form-group select { padding: 12px 16px; border: 1px solid #ddd; border-radius: 12px; }
.trf-btn { padding: 14px 28px; border-radius: 40px; font-weight: 600; border: none; cursor: pointer; transition: all 0.3s; }
.trf-btn-primary { background: #0056a3; color: white; }
.trf-btn-primary:hover { background: #003f73; transform: translateY(-2px); }
.trf-trailers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; padding: 40px 0; }
.trf-trailer-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: transform 0.3s; }
.trf-trailer-card:hover { transform: translateY(-5px); }
.trf-trailer-img { height: 200px; background: linear-gradient(135deg, #dce7f0, #c0d0df); display: flex; align-items: center; justify-content: center; font-size: 4rem; color: #0056a3; }
.trf-trailer-info { padding: 20px; }
.trf-trailer-title { font-size: 1.3rem; font-weight: 700; }
.trf-specs { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.trf-spec-badge { background: #f0f4f8; padding: 4px 12px; border-radius: 20px; font-size: 0.7rem; }
.trf-price { font-size: 1.8rem; font-weight: 800; color: #0056a3; margin: 12px 0; }
.trf-filters { background: white; padding: 20px; border-radius: 16px; margin: 20px 0; display: flex; gap: 15px; flex-wrap: wrap; }
.trf-filter-select { padding: 10px 20px; border: 1px solid #ddd; border-radius: 40px; }
.trf-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; padding: 60px 0; }
.trf-step { text-align: center; }
.trf-step-number { width: 70px; height: 70px; background: #0056a3; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; font-weight: 800; margin: 0 auto 20px; }
.trf-faq-item { background: white; margin-bottom: 12px; border-radius: 12px; padding: 20px; }
.trf-faq-question { font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; }
.trf-faq-answer { display: none; padding-top: 15px; color: #666; }
.trf-faq-answer.show { display: block; }
.trf-trust-badges { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; padding: 40px 0; background: #f0f4f8; }
.trf-trust-badge { text-align: center; }
.trf-trust-badge i { font-size: 2.5rem; color: #0056a3; margin-bottom: 10px; }
.trf-toast { position: fixed; bottom: 20px; right: 20px; background: #1a2c3e; color: white; padding: 12px 24px; border-radius: 40px; z-index: 9999; animation: slideIn 0.3s ease; }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@media (max-width: 768px) { .trf-hero-grid { grid-template-columns: 1fr; } .trf-hero-title { font-size: 2rem; } }