/* Transport Page Specific Styles */
.transport-page-wrapper {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    min-height: 70vh;
    padding-bottom: 100px;
    margin-bottom: -50px; /* Blend into footer */
    overflow: hidden; /* Prevent margin collapse */
}

.transport-hero {
    padding: 100px 20px 100px 20px;
    text-align: center;
    color: white;
}

.transport-container {
    max-width: 1200px;
    margin: -60px auto 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .transport-container {
        grid-template-columns: 1fr;
    }
}

.planner-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
}

.planner-input-group {
    margin-bottom: 20px;
    position: relative;
}

.planner-input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #e2e8f0;
}

.planner-input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
}

.planner-input::placeholder {
    color: #94a3b8;
}

.planner-input:focus {
    border-color: #f97316;
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

.btn-search {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1e293b;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    margin-top: 5px;
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: none;
}

.autocomplete-item {
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #e2e8f0;
}

.autocomplete-item:hover {
    background: rgba(255,255,255,0.05);
}

.results-area {
    margin-top: 30px;
}

.trip-card {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
}

.trip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.trip-leg {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.leg-icon {
    width: 40px;
    height: 40px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #f97316;
}

.cross-sell-widget {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 24px;
    padding: 30px;
    color: white;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    position: sticky;
    top: 100px;
}

.cross-sell-widget img {
    width: 100px;
    margin-bottom: 20px;
}

.btn-buy-esim {
    display: inline-block;
    background: white;
    color: #1e293b;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s;
}

.btn-buy-esim:hover {
    background: #f97316;
    color: white;
}
