/* HRC Booking System Styles */

/* Adjust select dropdown arrow position */
select.hrc-input,
select[name="title"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center; /* 10px from right */
    background-size: 16px;
    padding-right: 36px; /* Space for arrow + 10px padding */
}

/* Custom style for Card Payment label */
.elementor-kit-13 .hrc-payment-label {
    font-family: var(--e-global-typography-2fb36f0-font-family), Sans-serif;
    font-size: var(--e-global-typography-2fb36f0-font-size);
    font-weight: 500; /* Custom font weight */
    color: #333; /* Custom text color (adjust as needed) */
   
    
}

/* Additional custom styling for the payment info */
.elementor-kit-13 .hrc-payment-info {
    font-size: 14px; /* Adjust the font size as needed */
    color: #666; /* Adjust the color */
}

/* Custom style for the payment title */
.elementor-kit-13 .hrc-payment-title {
    font-weight: 500; /* Custom font weight for title */
    color: #1D2327; /* Adjust the title color */
}

/* Custom style for the payment description */
.elementor-kit-13 .hrc-payment-desc {
    font-style: italic; /* Keep italic style */
    color: #888; /* Adjust the description color */
}




.hrc-booking-form,
.hrc-book-now-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #333;
}

/* Tabs */
.hrc-booking-tabs {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
}

.hrc-tab {
    padding: 6px 0px 4px 0px;
    margin-right: 40px;
    cursor: pointer;
    font-weight: 400;
    font-size: 20px;
    color: #999;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.hrc-tab.active {
    color: #000;
    border-bottom: 1px solid #000;
}

.hrc-tab:hover {
    color: #333;
}

/* Form Elements */
.hrc-form-group {
    margin-bottom: 20px;
}

.elementor .hrc-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
/* 

.elementor .hrc-input,
.elementor .hrc-textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.elementor .hrc-input:hover,
.elementor .hrc-textarea:hover {
    width: 100%;
    border: 1px solid #1D2327;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.elementor .hrc-input:focus,
.elementor .hrc-textarea:focus {
    outline: none;
    border-color: #1D2327;
} */



.elementor .hrc-input, .elementor .hrc-textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for border-color and box-shadow */
    box-sizing: border-box;
    background-color: #f9f9f9!important; /* Light background */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1)!important;
    
}

/* Focus and hover effect for input and textarea */
.elementor .hrc-input:focus, .elementor .hrc-textarea:focus {
    outline: none; /* Removes the default outline */
    border-color: #1D2327!important; /* Change the border color on focus */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1)!important; /* Light shadow on focus */
}

.elementor .hrc-input:hover, .elementor .hrc-textarea:hover {
    border-color: #1D2327!important; /* Change the border color on hover */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1)!important; /* Light shadow on hover */
}




.elementor .hrc-textarea {
    min-height: 100px;
    resize: vertical;
}

/* Buttons */
.elementor .hrc-search-btn,
.elementor .hrc-book-btn,
.elementor .hrc-continue-btn,
.elementor .hrc-complete-btn,
.elementor .hrc-apply-btn {
    background: #6D6E70;
    color: white;
    border: none;
    padding: 10px 30px 10px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: none;
}

.elementor .hrc-search-btn {
    width: 100%;
    margin-top: 20px;
}

.elementor .hrc-search-btn:hover,
.elementor .hrc-book-btn:hover,
.elementor .hrc-continue-btn:hover,
.elementor .hrc-complete-btn:hover,
.elementor .hrc-apply-btn:hover {
    background: #1D2327;
    border: none;

}

.elementor .hrc-search-btn:focus,
.elementor .hrc-book-btn:focus,
.elementor .hrc-continue-btn:focus,
.elementor .hrc-complete-btn:focus,
.elementor .hrc-apply-btn:focus {
    background: #1D2327;
    border: none;
}

.elementor .hrc-add-stop {
    background: transparent;
    border: none;
    color: #6D6E70;
    font-size: 12px;
    margin-top: 5px;
    padding: 10px 0px 10px 0px;
}

.elementor .hrc-add-stop:hover {
    color: #1D2327;
    background: none;
    cursor: pointer;
    text-decoration: underline;
}


.elementor .hrc-add-stop:focus {
    color: #1D2327;
    background: none;
    cursor: pointer;
    text-decoration: underline;
}

/* Tab Content */
.hrc-tab-content {
    display: none;
}

.hrc-tab-content.active {
    display: block;
}

/* Book Now Layout */
.hrc-booking-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.hrc-step {
    display: flex;
    align-items: center;
    color: #999;
    cursor: pointer;
    position: relative;
}

.hrc-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: calc(100% + 10px);
    top: 15px;
    width: 60px;
    height: 1px;
    background: #e0e0e0;
}

.hrc-step.active {
    color: #333;
}

.hrc-step.completed {
    color: #1D2327;
}

@media (max-width: 768px) {
    .hrc-booking-steps {
        gap: 40px;
    }
    
    .hrc-step {
        flex-direction: column;
        text-align: center;
        line-height: 1em;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    .hrc-step:not(:last-child)::after {
    display: none;
    }
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e0e0e0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    margin-right: 10px;
}

.hrc-step.active .step-number {
    background: #333;
}

.hrc-step.completed .step-number {
    background: #1D2327;
}

.step-text {
    font-weight: 500;
}

/* Content Layout */
.hrc-booking-content {
    display: flex;
    gap: 30px;
}

.hrc-booking-left {
    flex: 1;
    max-width: 400px;
}

.hrc-booking-right {
    flex: 2;
}

.hrc-step-content,
.hrc-step-right {
    display: none;
}

.hrc-step-content.active,
.hrc-step-right.active {
    display: block;
}



/* Search Sidebar */
.hrc-search-sidebar {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Map */
.hrc-map-container {
    margin-top: 20px;
}

.hrc-route-info {
    background: white;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 10px;
    font-size: 14px;
}

/* Cars List */
.hrc-cars-list {
    space-y: 20px;
}

.hrc-car-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.hrc-car-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hrc-car-info {
    display: flex;
    align-items: center;
    padding: 20px;
    background: white;
}

.hrc-car-image {
    width: 120px;
    margin-right: 20px;
}

.hrc-car-image img {
    width: 100%;
    height: auto;
}

.hrc-car-details {
    flex: 1;
}

.hrc-car-category {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.hrc-car-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.hrc-car-capacity {
    font-size: 14px;
    color: #666;
}

.hrc-car-pricing {
    text-align: right;
}

.hrc-car-price {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hrc-car-features {
    background: #f8f8f8;
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

.hrc-feature-group {
    text-align: center;
}

.hrc-feature-title {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.hrc-feature-list div {
    font-size: 13px;
    margin-bottom: 3px;
}

.hrc-feature-value {
    font-size: 13px;
    font-weight: 500;
}

/* Service Tabs */
.hrc-service-tabs {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.hrc-service-tab {
    padding: 15px 20px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    color: #666;
}

.hrc-service-tab.active {
    color: #333;
    border-bottom: 2px solid #1D2327;
}

.hrc-service-tab-content {
    display: none;
}

.hrc-service-tab-content.active {
    display: block;
}

/* Selected Car */
.hrc-selected-car {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.hrc-selected-car img {
    width: 80px;
    margin-right: 15px;
}

/* Form Rows */
.hrc-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.hrc-form-row .hrc-form-group {
    flex: 1;
    margin-bottom: 0;
}

/* Phone Input */
.hrc-phone-input {
    display: flex;
    gap: 10px;
}

.hrc-country-select {
    width: 100px;
    padding: 15px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

/* Radio Groups */
.hrc-radio-group {
    margin-bottom: 15px;
}

.hrc-radio-group input[type="radio"] {
    margin-right: 8px;
}

.hrc-radio-group label {
    font-size: 14px;
    color: #333;
    cursor: pointer;
    text-transform: none;
    margin-bottom: 0;
}

/* Child Seats */
.hrc-child-seats {
    margin: 30px 0;
    padding: 20px;
    border-top: 1px solid #ddd; /* Light top border */
    border-bottom: 1px solid #ddd; /* Light bottom border */
}

.elementor .hrc-child-seats h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.hrc-seats-row {
    display: flex;
    gap: 20px;
}

.elementor .hrc-seat-counter {
    flex: 1;
    text-align: center;
}

.elementor .hrc-seat-counter label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: none;
}

.elementor .hrc-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1D2327;
    background-color: #f9f9f9; /* Light background */
    border-radius: 4px; /* Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Light drop shadow */
    transition: box-shadow 0.3s ease; /* Smooth transition for box-shadow */

}

.elementor .hrc-counter:hover {
       box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2); /* Light drop shadow */
}

/* Optional: Styling for the + and - buttons */
.elementor .hrc-counter button {
    background-color: transparent; /* Light background for buttons */
    color: #1D2327;
    border-radius: none;
    font-size: 16px;
}

/* Hover effect for buttons */
.elementor .hrc-counter button:hover {
    background-color: transparent; /* Slight hover effect */
    color: #1D2327;
}


.elementor .hrc-counter button:focus {
    border: none;
    background: none;
    color: #1D2327;
}

.elementor .hrc-counter span {
    min-width: 20px;
    text-align: center;
    font-weight: 500;
}

/* Terms Section */
.hrc-terms-section {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.elementor .hrc-terms-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
}

.hrc-terms-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.hrc-terms-item:last-child {
    border-bottom: none;
}

/* Promo Section */
.hrc-promo-section {
    margin-bottom: 20px;
}

.hrc-promo-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
}

.hrc-promo-input {
    display: flex;
    gap: 10px;
}

.hrc-promo-input input {
    flex: 1;
}

.hrc-promo-message {
    margin-top: 10px;
    font-size: 14px;
}

.hrc-promo-message.success {
    color: #4caf50;
}

.hrc-promo-message.error {
    color: #f44336;
}

/* Payment Section */
.hrc-payment-section {
    margin-bottom: 20px;
}

.hrc-payment-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
}

.hrc-payment-section p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.hrc-payment-method {
    margin-bottom: 20px;
}

.hrc-card-form {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
}

.hrc-direct-bill {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

/* Total Section */
.hrc-total-section {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.hrc-total-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.hrc-total-final {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 2px solid #ddd;
    font-weight: 600;
    font-size: 18px;
}

.hrc-discount {
    color: #4caf50;
}

/* Terms Text */
.hrc-terms-text {
    font-size: 12px;
    color: #666;
    margin-top: 15px;
    line-height: 1.4;
}

 .hrc-terms-text a {
    color: #1D2327;
    text-decoration: none;
}

/* Exclude links inside .hrc-terms-text */
.elementor-kit-13 a:not(.hrc-terms-text a) {
    color: #666;
}

/* Hover effect for links inside .elementor-kit-13 excluding .hrc-terms-text */
.elementor-kit-13 a:not(.hrc-terms-text a):hover {
    color: #1D2327; /* Your hover color */
}

/* Stops */
.hrc-stop-item {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 15px;
}

.hrc-stop-location {
    margin-bottom: 15px;
}

.hrc-stop-duration-row {
    display: flex;
    align-items: end;
    gap: 15px;
    margin-bottom: 15px;
}

.hrc-stop-duration {
    flex: 1;
}

.elementor .hrc-remove-stop {
    background: #6D6E70;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    height: fit-content;
    margin-top: 10px;
}

.elementor .hrc-remove-stop:hover {
    background: #1D2327;
    color: white;
    border: none;
    padding: 10px 15px;
    height: fit-content;
}


.hrc-duration-field {
    margin-bottom: 20px;
}

/* Booking Summary */
.hrc-booking-summary {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.elementor .hrc-booking-summary h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
}

.hrc-summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.hrc-summary-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hrc-booking-content {
        flex-direction: column;
    }
    
    .hrc-booking-left {
        max-width: none;
    }
    
    .hrc-form-row {
        flex-direction: column;
    }
    
    .hrc-seats-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .hrc-car-info {
        flex-direction: column;
        text-align: center;
    }
    
    .hrc-car-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .hrc-car-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .hrc-booking-steps {
        flex-direction: column;
        gap: 10px;
    }
    
}

/* Fix flex container for all steps */
.hrc-booking-content {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 30px !important;
}

.hrc-booking-left {
    flex: 1 !important;
    max-width: 400px !important;
    min-width: 300px !important;
}

.hrc-booking-right {
    flex: 2 !important;
    min-width: 0 !important;
}



/* Elementor Compatibility */
.elementor-widget-container .hrc-booking-form,
.elementor-widget-container .hrc-book-now-container {
    max-width: 100%;
}

/* Loading States */
.hrc-loading {
    position: relative;
    opacity: 0.6;
    pointer-events: none;
}

.hrc-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #1D2327;
    border-radius: 50%;
    border-right-color: transparent;
    animation: hrc-spin 1s linear infinite;
}

@keyframes hrc-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Error States */
.hrc-error {
    color: #f44336;
    font-size: 14px;
    margin-top: 5px;
}

/* Success States */
.hrc-success {
    color: #4caf50;
    font-size: 14px;
    margin-top: 5px;
}


/* Updated Car Item Layout */
.hrc-car-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.hrc-car-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Car info section - remove toggle from here */
.hrc-car-info {
    display: flex;
    align-items: center;
    padding: 20px;
    background: white;
}

.hrc-car-image {
    width: 120px;
    margin-right: 20px;
}

.hrc-car-image img {
    width: 100%;
    height: auto;
}

.hrc-car-details {
    flex: 1;
}

.hrc-car-category {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.hrc-car-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.hrc-car-capacity {
    font-size: 14px;
    color: #666;
}

.hrc-car-pricing {
    text-align: right;
}

/* Updated price section with Estimated label */
.hrc-car-price {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 10px;
}

.hrc-price-label {
    font-size: 14px;
    color: #666;
    font-weight: normal;
}

.hrc-price-amount {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* Toggle button - now positioned below car info */
.hrc-car-toggle {
    display: flex;
    justify-content: center;
    height: 24px;
    cursor: pointer;
    background: #f8f8f8;
    transition: background-color 0.3s ease;
}

.hrc-car-toggle:hover {
    background: #f0f0f0;
}

.hrc-toggle-icon {
    font-size: 20px;
    color: #666;
    transition: transform 0.3s ease, color 0.3s ease;
}

.hrc-car-toggle:hover .hrc-toggle-icon {
    color: #1D2327;
}

.hrc-car-item .hrc-toggle-icon {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hrc-car-item.expanded .hrc-toggle-icon {
    transform: rotate(180deg);
    opacity: 1;
}

/* Car features section */
.hrc-car-features {
    display: none;
    background: #f8f8f8;
    padding: 20px;
    border-top: 1px solid #e0e0e0;
}

.hrc-car-item.expanded .hrc-car-features {
    display: flex;
    justify-content: space-between;
}

.hrc-feature-group {
    text-align: center;
}

.hrc-feature-title {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.hrc-feature-list div {
    font-size: 13px;
    margin-bottom: 3px;
}

.hrc-feature-value {
    font-size: 13px;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hrc-car-info {
        flex-direction: column;
        text-align: center;
    }
    
    .hrc-car-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .hrc-car-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .hrc-car-price {
        justify-content: center;
    }
    
    .hrc-toggle-icon {
        font-size: 16px;
    }
}


/* Step 2 Sidebar Improvements */
.hrc-booking-summary {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.elementor .hrc-booking-summary h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #1D2327;
    padding-bottom: 10px;
    
}

.hrc-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.hrc-summary-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.hrc-summary-item span:first-child {
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    font-size: 12px;
}

.hrc-summary-item span:last-child {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

/* Selected Car Display */
.hrc-selected-car {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hrc-selected-car-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hrc-selected-car-info img {
    width: 120px;
    height: auto;
}

.hrc-selected-car-info .hrc-car-category {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.hrc-selected-car-info .hrc-car-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.hrc-selected-car-info .hrc-car-capacity {
    font-size: 12px;
    color: #666;
}

.hrc-selected-car-info .hrc-car-price {
    font-size: 18px;
    font-weight: 600;
    color: #a67c52;
    margin-left: auto;
}


/* Car Detail Tabs Styling */
.hrc-car-detail-tabs {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.hrc-tab-nav {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    background: #f8f8f8;
}

.elementor .hrc-detail-tab {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.elementor .hrc-detail-tab.active {
    color: #333;
    background: #ffffff;
    border-bottom: 3px solid #1D2327;
}

.elementor .hrc-detail-tab:hover {
    color: #ffffff;
    background: #1D2327;
}

.elementor .hrc-detail-tab:focus {
    color: #ffffff;
    background: #1D2327;
}

.hrc-tab-content-container {
    background: #ffffff;
}

.hrc-tab-panel {
    display: none;
    padding: 20px;
}

.hrc-tab-panel.active {
    display: block;
}

/* Service Tab Content */
.hrc-service-info {
    space-y: 12px;
}

.hrc-info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.hrc-info-row:last-child {
    border-bottom: none;
}

.hrc-info-label {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 0 0 40%;
}

.hrc-info-value {
    font-size: 14px;
    color: #333;
    text-align: right;
    flex: 1;
    font-weight: 500;
}

/* Information Tab Content */
.hrc-service-details {
    space-y: 20px;
}

.elementor .hrc-detail-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hrc-detail-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hrc-detail-section li {
    padding: 8px 0;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.hrc-detail-section li:last-child {
    border-bottom: none;
}

.hrc-detail-row {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.hrc-detail-item {
    flex: 1;
}

.elementor .hrc-detail-item h5 {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.hrc-detail-item p {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    margin: 0;
}

/* Radio Button Styling */
.hrc-booking-type-section {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.hrc-radio-option {
    margin-bottom: 15px;
}

.hrc-radio-option:last-child {
    margin-bottom: 0;
}

.hrc-radio-option input[type="radio"] {
    display: none;
}

.hrc-radio-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    padding: 12px 0;
}

.hrc-radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.hrc-radio-option input[type="radio"]:checked + label .hrc-radio-custom {
    border-color: #1D2327;
}

.hrc-radio-option input[type="radio"]:checked + label .hrc-radio-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #1D2327;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hrc-radio-option label:hover .hrc-radio-custom {
    border-color: #1D2327;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hrc-detail-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .hrc-info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .hrc-info-label {
        flex: none;
    }
    
    .hrc-info-value {
        text-align: left;
    }
}


/* Add this CSS to your hrc-booking.css file for Step 3 */

/* Final Summary Styling */
.hrc-final-booking-summary {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
}

.elementor .hrc-final-booking-summary h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #1D2327;
    padding-bottom: 10px;
}

.hrc-summary-section {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.hrc-summary-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.elementor .hrc-summary-section h4 {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.hrc-summary-section p {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    margin: 0;
}

/* Passenger Summary */
.hrc-passenger-summary {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
}

.elementor .hrc-passenger-summary h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #1D2327;
    padding-bottom: 10px;
}

.hrc-passenger-summary .hrc-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.hrc-passenger-summary .hrc-summary-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.hrc-passenger-summary .hrc-summary-item span:first-child {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    font-weight: 500;
}

.elementor .hrc-passenger-summary .hrc-summary-item span:last-child {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}


/* Add/Update this CSS in your hrc-booking.css file */

/* Payment Method Radio Buttons */
.hrc-payment-method .hrc-radio-group {
    margin-bottom: 15px;
}

.hrc-payment-method .hrc-radio-group input[type="radio"] {
    margin-right: 8px;
    width: 16px;
    height: 16px;
}

.elementor .hrc-payment-method .hrc-radio-group label {
    font-size: 14px;
    color: #333;
    cursor: pointer;
    text-transform: none;
    margin-bottom: 8px;
    align-items: center;
}

/* Booking Type Radio Buttons - Step 2 */
.hrc-booking-type-section .hrc-radio-option input[type="radio"] {
    display: none;
}

.elementor .hrc-booking-type-section .hrc-radio-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    padding: 12px 0;
}

.hrc-radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hrc-booking-type-section .hrc-radio-option input[type="radio"]:checked + label .hrc-radio-custom {
    border-color: #1D2327;
}

.hrc-booking-type-section .hrc-radio-option input[type="radio"]:checked + label .hrc-radio-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #1D2327;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hrc-booking-type-section .hrc-radio-option label:hover .hrc-radio-custom {
    border-color: #1D2327;
}


/* Step 3 Layout Improvements */
#step-3-content {
    display: block;
    padding-right: 20px;
}

/* Remove map container margins for step 3 */
#step-3-content .hrc-map-container {
    display: none;
}

/* Improve right sidebar layout */
#step-3-right {
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Each section in right sidebar */
#step-3-right > div {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 0;
}

/* Responsive layout for Step 3 */
@media (max-width: 768px) {
    .hrc-booking-content {
        flex-direction: column;
    }
    
    #step-3-content {
        padding-right: 0;
        order: 1;
    }
    
    #step-3-right {
        order: 2;
    }
}


/* Content Layout - FIXED VERSION */
.hrc-booking-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    min-height: 500px;
}

.hrc-booking-left {
    flex: 1;
    max-width: 400px;
    min-width: 300px;
}

.hrc-booking-right {
    flex: 2;
    min-width: 0;
    position: relative;
}



#step-3-right.active {
    display: block;
}

/* Fix Step 3 Right Column Positioning */
#step-3-right {
    background: transparent;
    padding: 0;
}

#step-3-right > div {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    padding: 20px;
}

/* Remove any absolute positioning that might interfere */
.hrc-terms-section,
.hrc-promo-section,
.hrc-payment-section,
.hrc-total-section {
    position: relative;
    width: 100%;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .hrc-booking-content {
        flex-direction: column !important;
    }
    
    .hrc-booking-left,
    .hrc-booking-right {
        max-width: none !important;
        flex: none !important;
    }
}


/* Force correct layout structure */
.hrc-book-now-container .hrc-booking-content {
    display: flex !important;
    flex-direction: row !important;
    gap: 30px !important;
}

.hrc-book-now-container .hrc-booking-left {
    flex: 1 !important;
    max-width: 400px !important;
    order: 1 !important;
}

.hrc-book-now-container .hrc-booking-right {
    flex: 2 !important;
    order: 2 !important;
}

/* Ensure Step 3 right content shows properly */
#step-3-right {
    display: none;
}

#step-3-right.active {
    display: block !important;
}

/* Step Content Visibility - Fixed */
.hrc-step-content {
    display: none;
}

.hrc-step-content.active {
    display: block;
}

.hrc-step-right {
    display: none;
}

.hrc-step-right.active {
    display: block;
}

/* Hide final summary by default */
.hrc-final-summary {
    display: none;
}

#step-3-content.active .hrc-final-summary {
    display: block;
}



#step-3-right.active > div {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Ensure Terms Section positioning */
.hrc-terms-section {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

/* Ensure Payment Section positioning */
.hrc-payment-section {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}


/* Step 3 Specific Fixes */
#step-3-right.active {
    display: block;
    background: transparent;
    padding: 0;
}

#step-3-right.active > div {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}



/* FORCE FLEX LAYOUT - HIGHEST PRIORITY */
.hrc-book-now-container .hrc-booking-content {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 30px !important;
    width: 100% !important;
}

/* Allow column layout on mobile */
@media (max-width: 768px) {
    .hrc-book-now-container .hrc-booking-content {
        flex-direction: column !important;
    }
}

.hrc-book-now-container .hrc-booking-left {
    flex: 1 !important;
    max-width: 400px !important;
    width: auto !important;
    min-width: 300px !important;
}

.hrc-book-now-container .hrc-booking-right {
    flex: 2 !important;
    max-width: none !important;
}

/* Step 3 Specific Override */
.hrc-book-now-container #step-3-right.active {
    display: block !important;
    flex: 2 !important;
    width: auto !important;
}

/* Prevent width inheritance issues */
.hrc-book-now-container .hrc-step-content,
.hrc-book-now-container .hrc-step-right {
    width: auto !important;
    max-width: none !important;
}


.hrc-step3-container {
display: flex !important;
flex-direction: row !important;
gap: 30px !important;
width: 100% !important;
align-items: flex-start !important;
}
.hrc-step3-left {
flex: 1 !important;
min-width: 300px !important;
max-width: 400px !important;
}
.hrc-step3-right {
flex: 2 !important;
min-width: 840px !important;
max-width: 900px !important;
}

/* Step 3 Terms Section */
.hrc-step3-terms-section {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.elementor .hrc-step3-terms-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 500;
}

.hrc-step3-terms-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.hrc-step3-terms-item:last-child {
    border-bottom: none;
}

/* Step 3 Promo Section */
.hrc-step3-promo-section {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.elementor .hrc-step3-promo-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 500;
}

.hrc-step3-promo-input {
    display: flex;
    gap: 10px;
}

.hrc-step3-promo-input input {
    flex: 1;
}

/* Step 3 Payment Section */
.hrc-step3-payment-section {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.elementor .hrc-step3-payment-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 500;
}

.elementor .hrc-step3-payment-section p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Step 3 Total Section */
.hrc-step3-total-section {
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.hrc-step3-total-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.hrc-step3-total-final {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 2px solid #ddd;
    font-weight: 600;
    font-size: 18px;
}

.hrc-step3-discount {
    color: #4caf50;
}

/* Step 3 Terms Text */
.hrc-step3-terms-text {
    font-size: 12px;
    color: #666;
    margin-top: 15px;
    line-height: 1.4;
}

.hrc-step3-terms-text a {
    color: #1D2327;
    text-decoration: none;
}

/* Step 3 Responsive */
@media (max-width: 768px) {
    .hrc-step3-container {
        flex-direction: column !important;
    }
    
    .hrc-step3-left,
    .hrc-step3-right {
        min-width: none !important;
        max-width: none !important;
        flex: none !important;
    }
}

/* Hide Step 3 by default */
#step-3-content {
    display: none;
}

#step-3-content.active {
    display: block !important;
}

/* Force show Step 3 container when active */
#step-3-content.active .hrc-step3-container {
    display: flex !important;
}


.elementor .hrc-passenger-form h3 {
    font-size: 24px; /* Adjust the size as needed */
    font-weight: 600; /* Adjust the weight */
    color: #333; /* Adjust the color if needed */
}

/* Updated Container to Include Toggle */
.hrc-selected-car-display {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px 30px 15px 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
    position: relative;
}

@media (max-width: 768px) {
    .hrc-selected-car-display {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: transparent;
    border: 0px;
    border-radius: 0px;
    box-shadow: none;
    width: 100%;
    }

.hrc-selected-car {
    padding: 0px;
}



}

/* Left Section - Car Image with Info Button */
.hrc-car-image-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-right: 20px;
}

.hrc-car-image-left img {
    width: 130px;
    height: auto;
    margin-bottom: 12px;
}

.hrc-info-toggle-center {
    background: #1e3a8a;
    border: none;
    border-radius: 4px;
    width: 32px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hrc-info-toggle-center:hover {
    background: #1e40af;
    transform: translateY(-1px);
}

.hrc-info-icon {
    font-size: 14px;
    color: white;
}

/* Center Section - Car Details */
.hrc-car-details-center {
    flex: 2;
    text-align: left;
    padding: 0 20px;
}

.hrc-car-details-center .hrc-car-class {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.hrc-car-details-center .hrc-car-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.hrc-car-details-center .hrc-car-capacity {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.hrc-capacity-icon {
    font-size: 16px;
}

.hrc-car-details-center .hrc-extra-info {
display: none;
}

/* Right Section - Price and Checkmark */
.hrc-car-price-right {
    flex: 1;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    padding-left: 20px;
}

.hrc-car-price-right .hrc-car-price {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.hrc-checkmark {
    background: #1D2327;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: bold;
}


/* Bottom Toggle Inside Card - Fixed */
.hrc-bottom-toggle-inside {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
    padding-top: 15px;
    margin-top: 10px;
    border-top: 1px solid #f0f0f0;
}

/* Override Elementor button styles completely */
.hrc-toggle-btn,
.elementor .hrc-toggle-btn,
.elementor-widget-container .hrc-toggle-btn {
    background: #f8f9fa00 !important;
    border-radius: 50% !important;
    display: flex !important;
    transition: all 0.3s ease !important;
    color: #666 !important;
    outline: none !important;
}

/* Hover state - override Elementor */
.hrc-toggle-btn:hover,
.elementor .hrc-toggle-btn:hover,
.elementor-widget-container .hrc-toggle-btn:hover {
    background: #f8f9fa00 !important;
    transform: scale(1.05) !important;
    color: #666 !important;
    box-shadow: none !important;
}

/* Active/Focus state - override Elementor */
.hrc-toggle-btn:active,
.hrc-toggle-btn:focus,
.elementor .hrc-toggle-btn:active,
.elementor .hrc-toggle-btn:focus {
    background: #f8f9fa00 !important;
    color: #666 !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Icon styling */
.hrc-bottom-icon {
    font-size: 16px !important;
    color: #666 !important;
    transition: transform 0.3s ease !important;
    display: inline-block !important;
    transform: rotate(0deg); /* Default state - arrow down */
}

/* Add smooth transition for icon rotation */
.hrc-bottom-icon {
    transition: transform 0.3s ease; /* Smooth transition for rotation */
}

/* Icon rotation when tab is expanded */
.hrc-bottom-icon.rotated {
    transform: rotate(180deg); /* Rotates the icon 180 degrees */
}

/* Optional: Set the display for car details section */
#car-detail-tabs {
    display: none; /* Default state is hidden */
}

#car-detail-tabs.show {
    display: block; /* When 'show' class is added, display the section */
}

/* Responsive Design */
@media (max-width: 768px) {

    
    .hrc-car-image-left,
    .hrc-car-details-center,
    .hrc-car-price-right {
        flex: none;
        text-align: center;
        padding: 0;
    }
    
    .hrc-car-image-left img {
        width: 110px;
    }
    
    .hrc-bottom-toggle-inside {
        margin-top: 15px;
        padding-top: 15px;
    }
}


/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {

    .hrc-car-capacity
    {
        justify-content: left!important;
    }
    
    /* Main Container - Stack vertically on mobile */
    .hrc-booking-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        padding: 0 !important;  /* Change from 0 15px to 0 */
    }
    
   
    .hrc-booking-left {
        flex: none !important;
        max-width: none !important;
        min-width: auto !important;
        width: 100% !important;
        order: 1; /* Show first */
    } 

        /* CRITICAL: Force column layout on mobile for ALL steps */
    .hrc-booking-content,
    .hrc-book-now-container .hrc-booking-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        padding: 0 !important;
    }

        /* Left sidebar - Full width on mobile */
    .hrc-booking-left,
    .hrc-book-now-container .hrc-booking-left {
        flex: none !important;
        max-width: none !important;
        min-width: auto !important;
        width: 100% !important;
        order: 1 !important;
    }
    
    /* Right Content - Full width, appears below sidebar */
    .hrc-booking-right {
        flex: none !important;
        max-width: none !important;
        width: 100% !important;
        order: 2;
    }
    
    /* Booking Steps - Stack vertically */
    .hrc-booking-steps {
        flex-direction: row;
        gap: 10px;
        padding: 15px;
        text-align: center;
    }
    
    .hrc-step {
        margin: 0px 10px 0px 10px;
        justify-content: center;
    }
    
    /* Form Elements - Full width */
    .hrc-form-row {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .hrc-form-row .hrc-form-group {
        flex: none !important;
        margin-bottom: 15px;
    }
    
    /* Search Sidebar */
    .hrc-search-sidebar {
        padding: 15px !important;
        margin-bottom: 15px;
    }
    
/* Car items take full width */
.hrc-car-info {
    flex-direction: column !important;
    text-align: left !important;
    align-items: stretch !important;
    padding: 0 !important;
}

span.hrc-price-amount {
    margin-top: -80px;
    margin-right: 20px;
}

.hrc-car-image {
    width: 100% !important;
    margin: 0 !important;
    align-self: stretch;
}

.hrc-car-image img {
    width: 60% !important;
    height: auto;
    display: block;
}

.hrc-price-label {
display: none;
}

.hrc-car-details {
    padding: 15px 15px 0 15px;
    margin-bottom: 0;
    text-align: left;
}

.hrc-car-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px !important;
}

.hrc-car-pricing {
    position: static !important;
    padding: 0 !important;
    text-align: right !important;
    margin: 0 !important;
}

.hrc-car-price {
    justify-content: flex-end !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

.hrc-car-item {
    position: relative;
}

.elementor .hrc-book-btn {
    width: 100% !important;
    display: block !important;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}
    
    /* Car Features - Stack vertically */
    .hrc-car-features {
        flex-direction: column !important;
        gap: 15px !important;
        padding: 15px !important;
    }
    
    .hrc-feature-group {
        text-align: center !important;
        margin-bottom: 15px;
    }
    
    /* Selected Car Display - Mobile layout */
    .hrc-selected-car-display {
        flex-direction: row !important;
        text-align: left !important;
        gap: 15px !important;
        padding: 20px !important;
    }

    .hrc-checkmark {
        display: none;
    }

    
    .hrc-car-image-left,
    .hrc-car-details-center,
    .hrc-car-price-right {
        flex: none !important;
        text-align: left !important;
        padding: 0 !important;
        align-items: left !important;
    }
    
    .hrc-car-image-left img {
        width: 120px !important;
        margin-bottom: 10px;
    }
    
    .hrc-car-details-center .hrc-car-capacity {
        justify-content: left !important;

    }
    
    /* Bottom toggle */
    .hrc-bottom-toggle-inside {
        margin-top: 15px !important;
        padding-top: 15px !important;
    }
    
    /* Passenger Form - Mobile friendly */
    .hrc-passenger-form {
        padding: 0 !important;
    }
    
    .hrc-passenger-form h3 {
        text-align: center;
        margin-bottom: 20px;
        font-weight: 500;
    }
    
    /* Phone Input - Stack on mobile */
    .hrc-phone-input {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .hrc-country-select {
        width: 100% !important;
    }
    
    /* Child Seats - Stack vertically */
    .hrc-seats-row {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .hrc-seat-counter {
        text-align: center !important;
    }
    
    /* Service Tabs - Mobile layout */
    .hrc-service-tabs,
    .hrc-tab-nav {
        flex-direction: column !important;
    }
    
    .hrc-service-tab,
    .hrc-detail-tab {
        text-align: center !important;
        padding: 12px !important;
    }
    
    /* Info Rows - Stack on mobile */
    .hrc-info-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 5px !important;
        text-align: left !important;
    }
    
    .hrc-info-label {
        flex: none !important;
    }
    
    .hrc-info-value {
        text-align: left !important;
    }
    
    /* Detail Rows - Stack on mobile */
    .hrc-detail-row {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    /* Step 3 Specific - Mobile layout */
    .hrc-step3-container {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .hrc-step3-left,
    .hrc-step3-right {
        min-width: none !important;
        max-width: none !important;
        flex: none !important;
        width: 100% !important;
    }
    
    .hrc-step3-left {
        order: 1;
    }
    
    .hrc-step3-right {
        order: 2;
    }
    
    /* Step 3 Sections - Better mobile spacing */
    .hrc-step3-terms-section,
    .hrc-step3-promo-section,
    .hrc-step3-payment-section,
    .hrc-step3-total-section {
        margin-bottom: 15px !important;
        padding: 15px !important;
    }
    
    /* Promo Input - Stack on mobile */
    .hrc-step3-promo-input {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .hrc-step3-promo-input input {
        flex: none !important;
    }
    
    /* Payment Form - Better mobile layout */
    .hrc-card-form .hrc-form-row {
        flex-direction: column !important;
    }
    
    /* Map Container - Better mobile size */
    .hrc-map-container {
        margin-top: 15px !important;
    }
    
    .hrc-map-container div[id*="map"] {
        height: 250px !important;
    }
    
    /* Buttons - Full width on mobile */
    .hrc-search-btn,
    .hrc-book-btn,
    .hrc-continue-btn,
    .hrc-complete-btn,
    .hrc-apply-btn {
        width: 100% !important;
        margin-top: 15px;
        padding: 15px;
        font-size: 16px;
    }

    
    
    /* Booking Summary - Mobile friendly */
    .hrc-booking-summary,
    .hrc-final-booking-summary,
    .hrc-passenger-summary {
        margin-bottom: 15px !important;
        padding: 15px !important;
    }
    
    /* Summary Items - Better mobile spacing */
    .hrc-summary-item {
        padding: 10px 0 !important;
        font-size: 14px !important;
    }
    
    .hrc-summary-item span:first-child {
        font-size: 11px;
    }
    
    .hrc-summary-item span:last-child {
        font-size: 13px !important;
    }
    
    /* Stop Items - Better mobile layout */
    .hrc-stop-item {
        padding: 15px !important;
        margin-bottom: 10px !important;
    }
    
    .hrc-stop-duration-row {
        flex-direction: column !important;
        gap: 10px !important;
        align-items: stretch !important;
    }
    
    .hrc-remove-stop {
        width: 100% !important;
        margin-top: 10px !important;
    }
    
    /* Route Info - Better mobile display */
    .hrc-route-info {
        padding: 10px !important;
        font-size: 14px !important;
        text-align: center;
    }
    
    /* Terms Text - Better mobile readability */
    .hrc-terms-text,
    .hrc-step3-terms-text {
        font-size: 11px !important;
        line-height: 1.5 !important;
        margin-top: 10px !important;
    }

/* Step 3 - Remove fixed widths on mobile */
    .hrc-step3-left,
    .hrc-step3-right {
        min-width: 0 !important;  /* Remove 840px constraint */
        max-width: none !important;
        flex: none !important;
        width: 100% !important;
    }



}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    
    .hrc-booking-content {
        padding: 0 10px !important;
        gap: 15px !important;
    }
    
    .hrc-search-sidebar,
    .hrc-booking-summary,
    .hrc-final-booking-summary,
    .hrc-passenger-summary {
        padding: 12px !important;
    }
    
    .hrc-car-info {
        padding: 12px !important;
    }
    
    .hrc-car-image img {
        width: 80px;
    }
    
    .hrc-selected-car-display {
        padding: 15px !important;
    }
    
    .hrc-car-image-left img {
        width: 200px !important;
    }
    
    .hrc-step3-terms-section,
    .hrc-step3-promo-section,
    .hrc-step3-payment-section,
    .hrc-step3-total-section {
        padding: 12px !important;
    }
    
    .hrc-map-container div[id*="map"] {
        height: 200px !important;
    }
    
    .hrc-booking-steps {
        padding: 10px !important;
    }
    
    .step-number {
        width: 25px !important;
        height: 25px !important;
        font-size: 12px !important;
    }
    
    .step-text {
        font-size: 12px !important;
    }
}


/* Stops display styling */
.hrc-summary-section.stop-section,
.hrc-summary-item.stop-item {
    border-left: 3px solid #1D2327;
    padding-left: 15px;
    margin-left: 10px;
    background: #f9f9f9;
}

.hrc-summary-section.stop-section h4,
.hrc-summary-item.stop-item span:first-child {
    color: #1D2327;
    font-weight: 600;
}

/* Mobile responsive for stops */
@media (max-width: 768px) {
    .hrc-summary-section.stop-section,
    .hrc-summary-item.stop-item {
        margin-left: 0;
        border-left: none;
        border-top: 2px solid #1D2327;
        padding-left: 12px;
        padding-top: 8px;
    }
}


/* Stripe Elements Styling */
.hrc-stripe-form {
    margin-top: 20px;
}

.hrc-stripe-element {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    transition: border-color 0.3s ease;
}

.hrc-stripe-element:focus-within {
    border-color: #1D2327;
    box-shadow: 0 0 0 1px #1D2327;
}

.hrc-stripe-error {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 8px;
    min-height: 20px;
}

/* Stripe Element iframe styling */
.StripeElement {
    height: 40px;
    padding: 10px 12px;
    color: #32325d;
    background-color: white;
    border-radius: 4px;
}

.StripeElement--focus {
    box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
    border-color: #fa755a;
}

.StripeElement--webkit-autofill {
    background-color: #fefde5 !important;
}

/* Loading state */
.hrc-stripe-form.loading {
    opacity: 0.6;
    pointer-events: none;
}


.hrc-cars-list {
    display: none; /* Initially hidden */
}

.hrc-cars-list.show-cars {
    display: block; /* Show when class is added */
}

.hrc-no-cars-message {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 16px;
}



/* Hide only Google logo - nothing else */
.pac-logo:after {
    content: "" !important;
    background-image: none !important;
    margin: 0px;
    padding: 0px;
}



/* Hide only Google attribution - Safe version */
.gm-style-cc,
a[href^="https://maps.google.com/maps"],
button[aria-label="Keyboard shortcuts"] {
    display: none !important;
}