input{
	outline: none !important;
}
textarea{
	resize: none;
}
section{
	overflow: hidden;
}
/* ========== GLOBAL & VARIABLES ========== */
:root {
    --primary: #0b1c2f;
    --secondary: #1e3a5f;
    --accent: #f4b841;
    --accent-glow: #ffd966;
    --light: #f8f9fa;
    --dark: #0a0f1e;
    --text: #e0e0e0;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ========== PRELOADER ========== */
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}
.bus-loader {
    font-size: 4rem;
    color: var(--accent);
    position: relative;
    animation: bounceBus 1s infinite alternate;
}
.road-line {
    width: 100px;
    height: 4px;
    background: repeating-linear-gradient(90deg, var(--accent) 0px, var(--accent) 10px, transparent 10px, transparent 20px);
    animation: roadMove 0.8s linear infinite;
}
@keyframes bounceBus {
    from { transform: translateY(-10px); }
    to { transform: translateY(10px); }
}
@keyframes roadMove {
    from { background-position: 0; }
    to { background-position: -20px; }
}

/* ========== HEADER ========== */
header {
    background: rgba(11, 28, 47, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(244, 184, 65, 0.2);
}
.navbar-brand {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
}
.brand-accent {
    color: var(--accent);
    background: linear-gradient(45deg, var(--accent), #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-link {
    color: white !important;
    margin: 0 0.5rem;
    position: relative;
    transition: 0.3s;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}
.nav-link:hover::after {
    width: 100%;
}
.navbar-toggler {
    border: 1px solid var(--accent);
}

/* ========== SECTIONS GENERAL ========== */
section {
    padding: 100px 0;
    position: relative;
}
.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}
.section-title span {
    background: linear-gradient(135deg, var(--accent), #ffaa33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 10px;
}
.section-title.left {
    text-align: left;
}

/* ========== HERO SECTION ========== */
.hero-section {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.hero-slider .swiper-slide {
    background-size: cover;
    background-position: center;
    filter: brightness(0.3);
}
.hero-content h1 {
    font-size: 5rem;
    font-weight: 800;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.text-accent {
    color: var(--accent);
}
.btn{
    transition: 0.3s;
}
.btn i{
    margin-left: 10px;
}
.btn-cta {
    background: var(--accent);
    color: var(--dark);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
}
.btn-cta:hover {
    background: white;
    color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 10px 25px var(--accent-glow);
}

/* ========== SCHEDULE ========== */
.schedule-section {
    background: var(--primary);
}
.table-wrapper {
    background: rgba(255,255,255,0.05);
    border-radius: 30px;
    padding: 2rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(244,184,65,0.3);
}
.schedule-table {
    width: 100%;
    border-collapse: collapse;
}
.schedule-table th {
    color: var(--accent);
    font-weight: 600;
    padding: 1rem;
}
.schedule-table td {
    padding: 0.8rem;
    border-bottom: 1px dashed rgba(255,255,255,0.2);
}
.status {
    font-weight: 600;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
}
.on-time { color: #28a745; }
.delayed { color: #dc3545; }
.boarding { color: var(--accent); animation: blink 1s infinite; }
@keyframes blink { 50% { opacity: 0.5; } }
.btn-sm-book {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    transition: 0.3s;
}
.btn-sm-book:hover {
    background: var(--accent);
    color: var(--dark);
}

/* ========== BOOKING ========== */
.booking-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1520939817895-060bdaf4fe1b?q=80&w=2070&auto=format&fit=crop');
    background-attachment: fixed;
    background-size: cover;
}
.booking-card {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(12px);
    border-radius: 40px;
    padding: 3rem;
    border: 1px solid var(--accent);
}
.form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(244,184,65,0.5);
    color: white;
    padding: 0.8rem;

}
.form-control::placeholder{
    color: white;
}
.form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent);
    color: white;
}
.btn-submit {
    background: var(--accent);
    color: var(--dark);
    font-weight: 600;
    padding: 0.8rem;
}

/* ========== FLEET (SWIPER) ========== */
.fleet-section{
    .swiper-pagination{
        bottom: -3px;
    }
    .swiper-pagination-bullet{
        background: #fff;
    }
}
.fleet-card {
    background: #1a2634;
    border-radius: 30px;
    overflow: hidden;
    text-align: center;
    transition: 0.5s;
    border: 1px solid transparent;
}
.fleet-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
}
.fleet-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.fleet-card p {
    margin: 1rem 0 0.5rem;
    font-size: 1.2rem;
}
.badge-available {
    background: var(--accent);
    color: var(--dark);
    padding: 0.2rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
}

/* ========== EXPERIENCE (360 VR) ========== */
.experience-section {
    background: #11161f;
}
.vr-panel {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    background: #0e1a26;
    border-radius: 60px;
    padding: 3rem;
    text-align: center;
    cursor: grab;
    border: 2px dashed var(--accent);
    transition: 0.3s;
}
.vr-panel:active {
    cursor: grabbing;
}
.vr-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.8;
}
.vr-placeholder span {
    font-size: 1rem;
    color: white;
}

/* ========== ROUTES TABS ========== */
.routes-tabs {
    background: rgba(255,255,255,0.03);
    border-radius: 50px;
    padding: 2rem;
}
.tab-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}
.tab-btn {
    background: transparent;
    border: 1px solid var(--accent);
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 40px;
    transition: 0.3s;
}
.tab-btn.active, .tab-btn:hover {
    background: var(--accent);
    color: var(--dark);
}
.tab-content {
    display: none;
    font-size: 1.4rem;
    padding: 1rem;
}
.tab-content.active {
    display: block;
}

/* ========== AMENITIES ========== */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}
.amenity-item {
    background: #1e2b3a;
    border-radius: 30px;
    padding: 2rem;
    text-align: center;
    transition: 0.3s !important;

}
.amenity-item:hover {
    background: var(--accent);
    color: var(--dark);
    transform: rotate(1deg) scale(1.05);
}
.amenity-item i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
    background: var(--primary);
}
.testimonial-card {
    background: #22303f;
    border-radius: 30px;
    padding: 2rem;
    text-align: center;
    border-bottom: 4px solid var(--accent);
}
.testimonial-card i {
    color: var(--accent);
    font-size: 2rem;
    opacity: 0.6;
}

/* ========== CONTACT ========== */
.btn-subscribe {
    background: var(--accent);
    color: var(--dark);
    font-weight: 600;
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}
.contact-section p i {
    color: var(--accent);
    margin-right: 10px;
}

/* ========== FOOTER ========== */
footer {
    background: #03070c;
    padding: 2rem 0;
    border-top: 1px solid var(--accent);
}
footer i {
    margin: 0 0.5rem;
    color: var(--accent);
    transition: 0.3s;
}
footer i:hover {
    color: white;
}

/* ========== CUSTOM MODAL ========== */
.modal-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 11000;
}
.modal-custom.show {
    display: flex;
}
.modal-content-custom {
    background: #1b2a3f;
    padding: 3rem;
    border-radius: 50px;
    text-align: center;
    max-width: 400px;
    border: 2px solid var(--accent);
    animation: modalPop 0.4s;
}
@keyframes modalPop {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.modal-icon {
    font-size: 5rem;
    color: #28a745;
}
.btn-modal-close {
    background: var(--accent);
    border: none;
    padding: 0.6rem 2rem;
    border-radius: 40px;
    margin-top: 1rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 3rem; }
    .section-title { font-size: 2rem; }
    .navbar-collapse { background: rgba(0,0,0,0.95); padding: 1rem; border-radius: 20px; }
    .booking-card { padding: 1.5rem; }
    .vr-panel { padding: 1rem; }
    .schedule-table { font-size: 0.8rem; }
    .tab-buttons { flex-direction: column; }
}