Save 10% on Student Travel With RedCoach
Looking for the best travel deal?
First-Class Travel On A Student Budget
Enjoy a 10% student discount , 140° recline, Track My Bus tool, 5G WiFi and more on every RedCoach trip. Whether you’re going home for the weekend, or headed back to class, travel smart and save with RedCoach.
Claim your 10% discount and start saving today!
Students aged 16 years+ can receive a 10% discount on RedCoach, simply by selecting «Student» on the passenger drop down menu and providing a valid student ID.
Book your trip now
Find the closest stop near you!
Our Strategically located stops
Florida
Texas
Georgia
At RedCoach, We Take Your Safety Seriously
We implement rigorous training for our drivers.
We equip each coach with 360-degree cameras.
We offer a bus-tracking so you (and mom) can see its exact location.
So just sit back and relax.
We’ll do the driving.
Life is All About the Journey
3 different tiers of service
First Class, Business Class and Premium Economy. Select the class and departure that best fits your schedule and budget.
Luxury seating
Our gel-foam seats that recline 140°, also come equipped with footrests, ensuring your journey is just as comforting as your destination.
Free 5G Wi-Fi
We offer individual power outlets so you can catch up on homework or zone out with your favorite show.
Extra luggage space
No need to pack light! Your ticket includes two checked bags and a carry-on—perfect for all the laundry you’ve been saving for mom.
How to apply the discounts?
Select the passenger type when booking. The discount will be applied automatically!
Click on the «Passengers» section in the booking searcher.
Add passengers by type, and the discount will be applied automatically.
figure {
height: 100%;
}
.swiper{
overflow: visible;
}
.button-group button.active {
background-color: #C81832;
color: white;
}
.rc-container-slider-discount {
display: none;
}
.rc-container-slider-discount.active {
display: block;
}
@media (max-width: 640px) {
.swiper-slide{
margin-right: 8px !important;
}
.rc-container-benefits .swiper-wrapper,
.rc-container-benefits .swiper-slide {
height: 341px !important;
}
}
document.addEventListener(‘DOMContentLoaded’, function () {
const buttons = document.querySelectorAll(‘.button-group button’);
const containers = document.querySelectorAll(‘.rc-container-slider-discount’);
buttons[0].classList.add(‘active’);
containers[0].classList.add(‘active’);
buttons.forEach(button => {
button.addEventListener(‘click’, () => {
// Desactivar todos los botones
buttons.forEach(btn => btn.classList.remove(‘active’));
// Ocultar todos los contenedores
containers.forEach(container => container.classList.remove(‘active’));
// Activar el botón actual
button.classList.add(‘active’);
// Mostrar el contenedor correspondiente
if ( button.classList.contains(‘rc-container-slider-discount1’) ) {
document.getElementById(‘container1’).classList.add(‘active’);
};
if ( button.classList.contains(‘rc-container-slider-discount2’) ) {
document.getElementById(‘container2’).classList.add(‘active’);
};
if ( button.classList.contains(‘rc-container-slider-discount3’) ) {
document.getElementById(‘container3’).classList.add(‘active’);
};
});
});
})