* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #d32f2f;
    display: block;
}

.logo img + .logo-text {
    display: none;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    font-size: 15px;
}

.nav-link:hover {
    color: #d32f2f;
}

.nav-link.active {
    color: #d32f2f;
    font-weight: 600;
}

.nav-link.login-btn {
    background: #d32f2f;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s;
}

.nav-link.login-btn:hover {
    background: #b71c1c;
    color: #fff;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 5px 10px;
    transition: color 0.3s;
}

.mobile-menu-toggle:hover {
    color: #d32f2f;
}

.mobile-menu-toggle i {
    display: block;
}

/* Hero Slider Styles */
.hero-slider {
    min-height: 380px;
    position: relative;
    padding: 40px 20px 130px;
    overflow: hidden;
    background-color: #8B0000;
}

/* Background image slides */
.hero-bg-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* First slide visible by default so slider shows even before JS or if images 404 */
.hero-bg-slide:first-child {
    opacity: 1;
    z-index: 1;
    background-image: url('../images/busbanner.jpg');
    background-color: #8B0000;
}

.hero-bg-slide.active {
    opacity: 1;
    z-index: 1;
}

/* When JS has loaded images, only the .active slide is visible */
.hero-slider.bg-image-loaded .hero-bg-slide:first-child {
    opacity: 0;
}

.hero-slider.bg-image-loaded .hero-bg-slide.active {
    opacity: 1;
}

/* When no image loads, keep slides visible and use gradient on first slide */
.hero-slider.bg-image-missing .hero-bg-slide:first-child {
    background-image: none;
    background: linear-gradient(135deg, #8B0000 0%, #FF6B35 50%, #F7931E 100%);
}

.hero-slider.bg-image-missing .hero-bg-slide:not(:first-child) {
    display: none;
}

.hero-slider-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.2s;
}

.hero-dot:hover {
    background: rgba(255,255,255,0.6);
}

.hero-dot.active {
    background: #fff;
    transform: scale(1.2);
}

.slider-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.slider-text h1 {
    color: #fff;
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.5);
    position: relative;
    z-index: 2;
}

.sale-badge {
    background: rgba(255,255,255,0.95);
    padding: 20px 30px;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    position: relative;
    z-index: 2;
}

.sale-badge h2 {
    color: #d32f2f;
    font-size: 28px;
    margin-bottom: 5px;
}

.sale-badge p {
    color: #666;
    font-size: 16px;
}

/* Booking Form Styles */
.booking-form-container {
    max-width: 1200px;
    margin: -100px auto 0;
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.25), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.booking-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 20px;
    margin-bottom: 20px;
    align-items: start;
}

@media (max-width: 968px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i {
    color: #d32f2f;
    font-size: 14px;
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 18px;
    z-index: 2;
    pointer-events: none;
    line-height: 1;
}

.date-group label i {
    position: static;
    transform: none;
}

.form-group input {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 2px solid rgba(224, 224, 224, 0.8);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #333;
}

.form-group input::placeholder {
    color: #999;
    opacity: 0.8;
}

.form-group input:focus {
    outline: none;
    border-color: #d32f2f;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
    transform: translateY(-1px);
}

.date-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.date-group .form-group i {
    display: none;
}

.quick-dates {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.quick-date-btn {
    padding: 8px 15px;
    border: 2px solid rgba(224, 224, 224, 0.8);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    font-weight: 500;
}

.quick-date-btn:hover {
    background: rgba(255, 255, 255, 1);
    border-color: #d32f2f;
    transform: translateY(-1px);
}

.quick-date-btn.active {
    background: #d32f2f;
    color: #fff;
    border-color: #d32f2f;
    box-shadow: 0 2px 8px rgba(211, 47, 47, 0.3);
}

/* Flatpickr Calendar Styling */
.flatpickr-calendar {
    font-family: inherit;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border: 1px solid #e0e0e0;
    z-index: 9999;
}

.flatpickr-months {
    background: #d32f2f;
    border-radius: 8px 8px 0 0;
    padding: 10px 0;
}

.flatpickr-month {
    color: #fff;
}

.flatpickr-current-month {
    color: #fff;
    font-weight: 600;
}

.flatpickr-prev-month,
.flatpickr-next-month {
    color: #fff;
    fill: #fff;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
}

.flatpickr-weekdays {
    background: rgba(211, 47, 47, 0.1);
}

.flatpickr-weekday {
    color: #333;
    font-weight: 600;
}

.flatpickr-day {
    border-radius: 4px;
    transition: all 0.2s;
}

.flatpickr-day:hover {
    background: rgba(211, 47, 47, 0.1);
    border-color: rgba(211, 47, 47, 0.2);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #d32f2f;
    border-color: #d32f2f;
    color: #fff;
}

.flatpickr-day.today {
    border-color: #d32f2f;
    color: #d32f2f;
    font-weight: 600;
}

.flatpickr-day.flatpickr-disabled {
    color: #ccc;
    cursor: not-allowed;
}

.women-booking {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.women-booking label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.women-booking .form-group i {
    top: 20px;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 26px;
}

.toggle-label:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-label {
    background-color: #d32f2f;
}

.toggle-switch input:checked + .toggle-label:before {
    transform: translateX(24px);
}

.search-btn {
    width: auto;
    min-width: 200px;
    max-width: 300px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
    margin: 10px auto 0;
}

.search-btn:hover {
    background: linear-gradient(135deg, #b71c1c 0%, #8b0000 100%);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.5);
    transform: translateY(-2px);
}

.search-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(211, 47, 47, 0.4);
}

.search-btn i {
    font-size: 20px;
    line-height: 1;
    vertical-align: middle;
}

/* Suggestions Dropdown */
.suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-top: 5px;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.suggestions.show {
    display: block;
}

.suggestion-item {
    padding: 12px 15px;
    cursor: pointer;
    transition: background 0.2s;
}

.suggestion-item:hover {
    background: #f5f5f5;
}

/* ----- Available Bus Routes (Top Routes list style) ----- */
.bus-routes-section {
    padding: 56px 0 64px;
    background: #fff;
}

.routes-section-header {
    text-align: left;
    margin-bottom: 28px;
}

.bus-routes-section .section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.routes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0;
}

@media (min-width: 640px) {
    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

/* Route card: route + Book Now in one line, red border theme */
.route-card {
    background: #fff;
    border: 1px solid #d32f2f;
    border-radius: 10px;
    padding: 14px 18px;
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: auto;
    transition: box-shadow 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.route-card:hover {
    box-shadow: 0 4px 12px rgba(211,47,47,0.2);
}

.route-card .route-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
    text-align: left;
    line-height: 1.4;
    flex: 1;
    min-width: 0;
}

/* Book Now in one line: red border + red text, matches card */
.book-btn-inline {
    padding: 10px 20px;
    background: #fff !important;
    color: #d32f2f !important;
    border: 1px solid #d32f2f;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8125rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.book-btn-inline:hover {
    background: #d32f2f !important;
    color: #fff !important;
}

.book-btn {
    padding: 15px 30px;
    background: linear-gradient(135deg, #d32f2f 0%, #ff6b35 100%);
    color: #fff !important;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none !important;
    display: block !important;
    text-align: center;
    width: 100% !important;
    box-shadow: 0 4px 15px rgba(211,47,47,0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.book-btn:hover {
    background: linear-gradient(135deg, #b71c1c 0%, #d32f2f 100%);
    box-shadow: 0 6px 20px rgba(211,47,47,0.4);
    transform: translateY(-2px);
}

.book-btn:hover {
    background: #b71c1c;
}

/* Search Results */
.search-results {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.05) 0%, rgba(255, 107, 53, 0.05) 50%, rgba(247, 147, 30, 0.05) 100%),
                url('../images/busbanner.jpg') center/cover no-repeat fixed;
    background-attachment: fixed;
    min-height: 100vh;
}

.results-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bus-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bus-info {
    flex: 1;
}

.bus-name {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.bus-details {
    display: flex;
    gap: 30px;
    color: #666;
    font-size: 14px;
}

.bus-price {
    font-size: 24px;
    font-weight: bold;
    color: #d32f2f;
    margin-right: 20px;
}

/* Latest News Section */
.latest-news-section {
    padding: 60px 0;
    background: #fff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    color: #999;
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-date i {
    font-size: 12px;
}

.news-content h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
    flex: 1;
}

.news-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.read-more {
    color: #d32f2f;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 10px;
}

.read-more i {
    font-size: 12px;
    transition: transform 0.3s;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Amenities Section */
.amenities-section {
    padding: 80px 0;
    background: #fff;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.amenity-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 25px rgba(211,47,47,0.2);
    border-color: #d32f2f;
}

.amenity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s;
}

.amenity-card:hover .amenity-icon {
    transform: scale(1.1) rotate(5deg);
}

.amenity-icon i {
    font-size: 36px;
    color: #fff;
}

.amenity-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.amenity-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.gallery-header .section-title {
    margin-bottom: 15px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: #d32f2f;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 20px;
}

.view-all-btn:hover {
    background: #b71c1c;
    transform: translateX(5px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-grid.limited {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 25px;
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* Footer Styles */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d32f2f;
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: #d32f2f;
}

.footer-section ul li i {
    width: 20px;
    color: #d32f2f;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #d32f2f;
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    margin-bottom: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
}

.footer-legal-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-legal-links a:hover {
    color: #d32f2f;
}

.footer-legal-links span {
    color: #666;
}

/* Responsive Design */
@media (max-width: 968px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .women-booking {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        width: 100%;
        padding: 15px 20px;
        border-bottom: 1px solid #f0f0f0;
        display: block;
        text-align: left;
    }
    
    .nav-link.login-btn {
        margin: 10px 20px;
        width: calc(100% - 40px);
        text-align: center;
        padding: 12px 20px;
    }
    
    .hero-slider {
        min-height: 360px;
        padding: 35px 15px 110px;
    }
    
    .hero-slider::before {
        background-attachment: scroll;
    }
    
    .slider-text h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .sale-badge {
        padding: 15px 20px;
    }
    
    .sale-badge h2 {
        font-size: 22px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .booking-form-container {
        padding: 25px 20px;
        margin: -90px auto 0;
        border-radius: 15px;
    }
    
    .form-group label {
        font-size: 12px;
    }
    
    .form-group input {
        padding: 12px 15px 12px 40px;
        font-size: 15px;
    }
    
    .quick-dates {
        flex-wrap: wrap;
    }
    
    .quick-date-btn {
        flex: 1;
        min-width: 80px;
    }
    
    .search-btn {
        padding: 15px 30px;
        font-size: 16px;
        min-width: 180px;
        max-width: 250px;
    }
    
    .routes-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0;
    }
    
    .routes-section-header {
        margin-bottom: 28px;
    }
    
    .bus-routes-section .section-title {
        font-size: 1.5rem;
    }
    
    .bus-routes-section .section-subtitle {
        font-size: 0.9375rem;
    }
    
    .book-btn-inline {
        padding: 8px 14px;
        font-size: 0.75rem;
        min-width: 88px;
    }
    
    .route-card .route-title {
        font-size: 0.875rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 12px 0;
    }
    
    .logo img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .hero-slider {
        padding: 25px 15px 100px;
        min-height: 320px;
    }
    
    .slider-text h1 {
        font-size: 22px;
        line-height: 1.3;
    }
    
    .sale-badge {
        padding: 12px 18px;
    }
    
    .sale-badge h2 {
        font-size: 18px;
    }
    
    .sale-badge p {
        font-size: 14px;
    }
    
    .booking-form-container {
        padding: 20px 15px;
        margin: -80px auto 0;
    }
    
    .form-group input {
        padding: 11px 15px 11px 38px;
        font-size: 14px;
    }
    
    .search-btn {
        padding: 14px 25px;
        font-size: 15px;
        min-width: 160px;
        max-width: 220px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .news-content h3 {
        font-size: 18px;
    }
    
    .news-image {
        height: 180px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .route-card {
        padding: 12px 14px;
    }
    
    .route-card .route-title {
        font-size: 0.8125rem;
    }
    
    .city {
        font-size: 18px;
    }
}
