/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
    scroll-behavior: smooth;
}

:root {
    --primary: #1e3a8a;
    --primary-light: #3b82f6;
    --primary-dark: #172554;
    --secondary: #d97706;
    --secondary-light: #f59e0b;
    --secondary-dark: #b45309;
    --accent: #10b981;
    --accent-dark: #059669;
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --bg-light: #f3f4f6;
    --bg-white: #ffffff;
    --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
    --border-radius-sm: 8px;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography and Headings */
h1, h2, h3, h4 {
    font-weight: 700;
    color: var(--primary-dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-white);
    box-shadow: 0 4px 6px -1px rgba(30, 58, 138, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(30, 58, 138, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-success {
    background-color: var(--accent);
    color: var(--bg-white);
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.2);
}

.btn-success:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
}

.btn-danger {
    background-color: #ef4444;
    color: var(--bg-white);
}

.btn-danger:hover {
    background-color: #dc2626;
}

.btn-outline-danger {
    background-color: transparent;
    color: #ef4444;
    border: 2px solid #ef4444;
}

.btn-outline-danger:hover {
    background-color: #ef4444;
    color: var(--bg-white);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 18px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: var(--border-radius-sm);
}

/* Header styling with glassmorphism */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.main-header.scrolled {
    padding: 8px 0;
    background-color: rgba(255, 255, 255, 0.95);
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 54px;
    width: auto;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    padding: 2px;
    background: #fff;
    box-shadow: var(--card-shadow);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 1px;
}

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

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 12px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
    background-color: rgba(30, 58, 138, 0.05);
}

.booking-btn-nav {
    background-color: var(--secondary);
    color: var(--bg-white) !important;
    box-shadow: 0 4px 6px -1px rgba(217, 119, 6, 0.2);
}

.booking-btn-nav:hover {
    background-color: var(--secondary-light) !important;
    transform: scale(1.05);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 160px;
    padding-bottom: 120px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary-light) 0.5px, transparent 0.5px), radial-gradient(var(--primary-light) 0.5px, #eff6ff 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.15;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    background-color: rgba(217, 119, 6, 0.1);
    color: var(--secondary-dark);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(217, 119, 6, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-title {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.hero-lead {
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-lead strong {
    color: var(--primary);
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-circle-bg {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-featured-logo {
    position: relative;
    z-index: 2;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    object-fit: contain;
    border: 8px solid var(--bg-white);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.bus-feature-card {
    position: absolute;
    z-index: 3;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 16px;
    border-radius: var(--border-radius);
    box-shadow: var(--hover-shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    top: 20px;
    right: -20px;
    animation: floatRight 6s ease-in-out infinite;
}

.bus-feature-card.card-2 {
    top: auto;
    bottom: 20px;
    right: auto;
    left: -20px;
    animation: floatLeft 6s ease-in-out infinite 1s;
}

@keyframes floatRight {
    0% { transform: translate(0px, 0px); }
    50% { transform: translate(5px, -10px); }
    100% { transform: translate(0px, 0px); }
}

@keyframes floatLeft {
    0% { transform: translate(0px, 0px); }
    50% { transform: translate(-5px, 10px); }
    100% { transform: translate(0px, 0px); }
}

.bus-feature-icon {
    background-color: rgba(30, 58, 138, 0.1);
    color: var(--primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.bus-feature-icon.gold {
    background-color: rgba(217, 119, 6, 0.1);
    color: var(--secondary);
}

.bus-feature-info h4 {
    font-size: 14px;
    margin-bottom: 2px;
}

.bus-feature-info p {
    font-size: 11px;
    color: var(--text-muted);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.hero-wave .shape-fill {
    fill: var(--bg-light);
}

/* Sections Base Header */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.sub-title {
    display: inline-block;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.main-title {
    font-size: 32px;
    color: var(--primary-dark);
}

.title-underline {
    height: 4px;
    width: 60px;
    background-color: var(--secondary);
    margin: 12px auto 0;
    border-radius: 2px;
}

.section-subtitle-text {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 16px;
}

/* Universities Served */
.universities-section {
    padding: 80px 0;
}

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

.university-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 36px 32px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(229, 231, 235, 0.6);
}

.university-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(30, 58, 138, 0.1);
}

.featured-uni {
    border: 2px solid var(--secondary);
    box-shadow: 0 10px 25px -5px rgba(217, 119, 6, 0.1), 0 8px 10px -6px rgba(217, 119, 6, 0.05);
}

.uni-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--secondary);
    color: var(--bg-white);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

.uni-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(30, 58, 138, 0.05);
    color: var(--primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.university-card:hover .uni-icon {
    background-color: var(--primary);
    color: var(--bg-white);
}

.university-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.uni-desc {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 24px;
}

.uni-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.uni-tags span {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    background-color: rgba(30, 58, 138, 0.05);
    padding: 6px 12px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Route Timeline Section */
.route-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.timeline-container {
    position: relative;
    margin: 60px 0;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: #e5e7eb;
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 3px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-stations {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
}

.station-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    width: 100px;
}

.station-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 3px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 12px;
    transition: var(--transition);
}

.station-node:hover .station-dot {
    border-color: var(--primary-light);
    color: var(--primary-light);
    transform: scale(1.15);
}

.station-node.active .station-dot {
    border-color: var(--secondary);
    background-color: var(--secondary);
    color: var(--bg-white);
    box-shadow: 0 0 0 6px rgba(217, 119, 6, 0.2);
    transform: scale(1.2);
}

.station-node.passed .station-dot {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--bg-white);
}

.station-info {
    text-align: center;
    margin-top: 16px;
}

.station-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.station-type {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    background-color: rgba(229, 231, 235, 0.5);
    padding: 2px 8px;
    border-radius: 50px;
}

.station-node.active .station-type {
    background-color: rgba(217, 119, 6, 0.1);
    color: var(--secondary-dark);
}

/* Timeline detail pane */
.active-station-detail {
    background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
    border-radius: var(--border-radius);
    padding: 24px;
    border: 1px dashed rgba(59, 130, 246, 0.3);
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--card-shadow);
}

.detail-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 16px -4px rgba(30, 58, 138, 0.3);
}

.animate-bus {
    animation: busWobble 2s ease-in-out infinite;
}

@keyframes busWobble {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.detail-content h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.detail-content p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Features section styling */
.features-section {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.feature-box {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(229, 231, 235, 0.5);
    text-align: right;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(217, 119, 6, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(217, 119, 6, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Booking Section with glass cards */
.booking-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e293b 100%);
    color: var(--bg-white);
    position: relative;
}

.booking-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: center;
}

.booking-info-pane h2 {
    color: var(--bg-white);
    font-size: 36px;
    margin-bottom: 16px;
}

.booking-limit-warning {
    background-color: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
    padding: 10px 16px;
    border-radius: var(--border-radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 32px;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

.info-checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.checklist-item i {
    color: var(--secondary-light);
    font-size: 20px;
}

.steps-visual {
    display: flex;
    align-items: center;
    gap: 16px;
}

.step-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.step-circle span {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--secondary-light);
}

.step-circle p {
    font-size: 12px;
    color: #e2e8f0;
}

.step-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 18px;
    margin-bottom: 24px;
}

.booking-form-pane {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    color: var(--text-main);
}

.form-title-area {
    margin-bottom: 28px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 16px;
}

.form-title-area h3 {
    font-size: 22px;
    margin-bottom: 4px;
}

.form-title-area p {
    font-size: 13px;
    color: var(--text-muted);
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-dark);
}

.form-group label i {
    color: var(--secondary);
    margin-left: 4px;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid #cbd5e1;
    font-size: 15px;
    font-weight: 500;
    background-color: var(--bg-white);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-group textarea {
    height: 100px;
    resize: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-muted);
    font-size: 12px;
}

.form-group select {
    appearance: none;
    padding-left: 40px;
}

/* Contact Us Section */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 32px;
}

.contact-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(229, 231, 235, 0.6);
}

.address-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.address-card .card-icon {
    width: 72px;
    height: 72px;
    background-color: rgba(30, 58, 138, 0.05);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.02);
}

.address-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.address-text {
    font-size: 16px;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 20px;
}

.work-hours {
    font-size: 13px;
    color: var(--text-muted);
    background-color: rgba(229, 231, 235, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
}

.contacts-list-card h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.sub-info-text {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.phone-item-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.phone-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid #f3f4f6;
}

.phone-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.person-info {
    display: flex;
    flex-direction: column;
}

.person-info .name {
    font-weight: 700;
    font-size: 16px;
    color: var(--primary-dark);
}

.person-info .role {
    font-size: 12px;
    color: var(--text-muted);
}

.phone-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(30, 58, 138, 0.05);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.phone-btn:hover {
    background-color: var(--primary);
    color: var(--bg-white);
}

.phone-btn.secondary-phone {
    background-color: rgba(217, 119, 6, 0.05);
    color: var(--secondary);
}

.phone-btn.secondary-phone:hover {
    background-color: var(--secondary);
    color: var(--bg-white);
}

/* Floating admin trigger */
.admin-panel-trigger-wrapper {
    text-align: center;
    margin-top: 40px;
}

/* Admin panel display */
.admin-dashboard-section {
    padding: 60px 0;
    background-color: var(--primary-dark);
    color: var(--bg-white);
}

.admin-card {
    background-color: var(--bg-white);
    color: var(--text-main);
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.admin-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 16px;
}

.admin-card-header h2 {
    font-size: 22px;
    color: var(--primary-dark);
}

.admin-actions-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.table-responsive {
    overflow-x: auto;
    width: 100%;
}

.bookings-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.bookings-table th, .bookings-table td {
    padding: 12px 16px;
    text-align: right;
    border-bottom: 1px solid #e5e7eb;
}

.bookings-table th {
    background-color: #f8fafc;
    font-weight: 700;
    color: var(--primary-dark);
}

.bookings-table tr:hover td {
    background-color: #f1f5f9;
}

/* Modal styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-overlay.show {
    display: flex;
}

.success-modal {
    background-color: var(--bg-white);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: modalScaleUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalScaleUp {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 24px;
}

.animate-scale {
    animation: successPulse 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes successPulse {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.success-modal h2 {
    font-size: 24px;
    margin-bottom: 16px;
}

.success-modal p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.student-summary-card {
    background-color: #f8fafc;
    border-radius: var(--border-radius);
    padding: 16px;
    margin-bottom: 24px;
    border: 1px solid #e2e8f0;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.student-summary-card p {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--text-main);
}

.student-summary-card p strong {
    color: var(--primary);
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Footer Styling */
.main-footer {
    background-color: var(--primary-dark);
    color: #cbd5e1;
    padding: 72px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 72px;
    width: auto;
    object-fit: contain;
    border-radius: 50%;
    margin-bottom: 20px;
    background: #fff;
    padding: 4px;
    border: 2px solid var(--secondary);
}

.footer-brand h3 {
    color: var(--bg-white);
    font-size: 20px;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4, .footer-contact-info h4 {
    color: var(--bg-white);
    font-size: 18px;
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-light);
    transform: translateX(-4px);
}

.footer-contact-info p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-info p i {
    color: var(--secondary-light);
}

.footer-bottom {
    background-color: #0f172a;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #64748b;
}

.trust-phrase {
    color: var(--secondary-light);
    font-weight: 700;
}

/* Responsiveness adjustments */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 56px;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-actions {
        justify-content: center;
    }

    .booking-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 4px 0;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 24px;
        gap: 20px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
        z-index: 999;
    }

    .nav-menu.show {
        right: 0;
    }

    .nav-link {
        font-size: 18px;
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-lead {
        font-size: 16px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    /* Vertical Timeline layout for Mobile */
    .timeline-line {
        left: 20px;
        top: 0;
        width: 6px;
        height: 100%;
        transform: none;
    }

    .timeline-stations {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        padding-right: 12px;
    }

    .station-node {
        flex-direction: row;
        width: 100%;
        gap: 20px;
        cursor: pointer;
    }

    .station-info {
        text-align: right;
        margin-top: 0;
    }

    .station-info h4 {
        margin-bottom: 2px;
    }

    .booking-form-pane {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-featured-logo {
        width: 200px;
        height: 200px;
    }
}

.badge-uni {
    background-color: rgba(30, 58, 138, 0.1);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
}

.badge-station {
    background-color: rgba(217, 119, 6, 0.1);
    color: var(--secondary);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
}
