:root {
    --primary-blue: #1C538E;
    --primary-orange: #F96300;
    --light-gray: #F5F7FA;
    --border-color: #E8EAED;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --success-green: #10B981;
}





.page-header {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url("/assets/front/img/page-header.webp");
    background-position: top;
    background-size: cover;
    padding: 70px 0px;
    background-repeat: no-repeat;
}

/* Header */
.booking-header {
    text-align: left;

}

.booking-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.directions-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Map Section */
.map-section {
    margin-bottom: 50px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 500px;
    margin-bottom: 20px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Routes & Info Cards */
.routes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.route-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.route-card:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(249, 99, 0, 0.15);
    transform: translateY(-5px);
}

.route-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), #0F3A5F);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.route-card h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.route-details {
    list-style: none;
    padding: 0;
}

.route-details li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.95rem;
}

.route-details li:last-child {
    border-bottom: none;
}

.route-details li strong {
    color: var(--text-dark);
}

/* Two Column Layout */
.directions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .directions-content {
        grid-template-columns: 1fr;
    }
}

/* Signboard Graphics */
.signboard {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0F3A5F 100%);
    border-radius: 15px;
    padding: 30px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.signboard h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    border-bottom: 3px solid var(--primary-orange);
    padding-bottom: 15px;
}

.signboard-item {
    display: flex;
    align-items: start;
    margin-bottom: 20px;
}

.signboard-number {
    background: var(--primary-orange);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.signboard-text {
    flex: 1;
}

.signboard-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.signboard-text p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

/* Parking Info */
.parking-section {
    background: linear-gradient(135deg, var(--success-green), #059669);
    border-radius: 15px;
    padding: 30px;
    color: white;
}

.parking-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.parking-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.parking-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid white;
}

.parking-item strong {
    display: block;
    margin-bottom: 5px;
}

@media (max-width: 576px) {
    .parking-info {
        grid-template-columns: 1fr;
    }

    .directions-header h1 {
        font-size: 1.8rem;
    }
}

/* Entry/Exit Section */
.entry-exit-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.entry-exit-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.entry-exit-card:hover {
    border-color: var(--primary-orange);
    background: #FFF8F5;
}

.entry-exit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-orange);
}

.entry-exit-card h4 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.entry-exit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Contact Section */
.contact-section {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 30px;
    margin-top: 50px;
    text-align: center;
}

.contact-section h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    color: var(--primary-orange);
    font-size: 1.3rem;
}

.contact-item span {
    color: var(--text-light);
}

/* Distance & Time */
.distance-time {
    background: white;
    border: 2px dashed var(--primary-orange);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.distance-time h5 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 8px;
}

.distance-time p {
    margin: 5px 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.distance-highlight {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Container */
.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Button */
.btn-directions {
    background: var(--primary-orange);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-directions:hover {
    background: #E85D00;
    transform: translateY(-2px);
    color: white;
}

