/* Custom styles for Argo Logistics Transportation */

/* Ensure the booking calculator card stands out */
.booking-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px -15px rgba(11, 31, 51, 0.15);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.booking-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px -15px rgba(11, 31, 51, 0.2);
}

/* Styling for price display */
.price-highlight {
    background: linear-gradient(135deg, #FF6B00 0%, #FF8A00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Improved focus states for accessibility */
input:focus, select:focus, button:focus {
    outline: 2px solid #FF6B00;
    outline-offset: 2px;
}

/* Vehicle selection cards */
.vehicle-card {
    border: 3px solid transparent;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
}

.vehicle-card.selected {
    border-color: #FF6B00;
    background-color: #FFF6ED;
    box-shadow: 0 10px 30px -10px rgba(255, 107, 0, 0.2);
    transform: scale(1.02);
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.1);
}

/* Sticky mobile CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 50;
    border-top: 1px solid rgba(0,0,0,0.05);
}

@media (min-width: 640px) {
    .sticky-cta {
        display: none;
    }
}

/* Utility class for hiding elements but keeping them accessible for screen readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}