/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
    margin-top: 72px; /* Account for fixed header height */
}

@media (max-width: 768px) {
    body {
        margin-top: 68px; /* Match mobile header height */
    }
}

.container {
    max-width: 1800px;
    margin: 0 auto;
    overflow-x: hidden;
    padding: 0 1rem;
}

/* Mobile container - no left/right padding */
@media (max-width: 767px) {
    .container {
        padding: 0;
    }
    
    /* Mobile active booking step - no left/right padding */
    .booking-step.active {
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Mobile step 3 layout - vertical stacking */
    .step3-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        grid-template-columns: none !important;
        padding: 1rem !important;
        max-width: 100% !important;
    }
    
    .step3-left {
        order: 1 !important;
        margin-bottom: 0 !important;
        width: 100% !important;
    }
    
    .step3-right {
        order: 2 !important;
        margin-top: 0 !important;
        width: 100% !important;
    }
}

/* Tablet container - reduced left/right padding */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        padding: 0 1.5rem;
    }
    
    /* Tablet active booking step - moderate padding */
    .booking-step.active {
        padding: 2rem 1.5rem;
    }
    
    /* Tablet progress steps - optimized spacing */
    .booking-progress {
        max-width: 900px;
        gap: 1.5rem;
    }
    
    .progress-step {
        padding: 0.75rem 1.25rem;
        gap: 0.75rem;
    }
    
    .step-number {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .progress-step span {
        font-size: 0.85rem;
    }
    
    /* Tablet step 4 layout - balanced columns */
    .step4-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1rem;
    }
    
    /* Tablet cart cards - optimized layout */
    .cart-option {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .cart-main-content {
        gap: 1.5rem;
    }
    
    .cart-left-section {
        gap: 1.5rem;
    }
    
    .cart-image img {
        max-width: 350px;
    }
    
    /* Tablet form elements - better sizing */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 1rem;
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

/* ===== STEP 3 LAYOUT STYLES ===== */
.step3-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    max-width: 1800px;
    margin: 0 auto;
    padding: 2rem;
}

.step3-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step3-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
:root {
    --mobile-padding: 1rem;
    --tablet-padding: 1.5rem;
    --desktop-padding: 2rem;
    --mobile-gap: 1rem;
    --tablet-gap: 1.5rem;
    --desktop-gap: 2rem;
}

/* ===== RESPONSIVE HEADING STYLES ===== */
.booking-header h1,
#step1 h2,
.datetime-header h3,
.address-header h3,
.datetime-card-header h4,
.address-card-header h4,
.feature-category h4,
.pricing-breakdown h4,
.rental-summary h3,
.addon-option h3,
.step1-summary-section .rental-summary h3,
.step3-left .rental-summary h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Mobile styles (default) */
.booking-header h1 {
    font-size: 1.8rem;
    line-height: 1.3;
}

#step1 h2 {
    font-size: 1.5rem;
}

.datetime-header h3,
.address-header h3 {
    font-size: 1.25rem;
}

.datetime-card-header h4,
.address-card-header h4,
.feature-category h4,
.pricing-breakdown h4,
.rental-summary h3,
.addon-option h3,
.step1-summary-section .rental-summary h3,
.step3-left .rental-summary h3 {
    font-size: 1.1rem;
}

/* Tablet styles */
@media (min-width: 768px) {
    .booking-header h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    #step1 h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .datetime-header h3,
    .address-header h3 {
        font-size: 1.5rem;
    }
    
    .datetime-card-header h4,
    .address-card-header h4,
    .feature-category h4,
    .pricing-breakdown h4,
    .rental-summary h3,
    .addon-option h3,
    .step1-summary-section .rental-summary h3,
    .step3-left .rental-summary h3 {
        font-size: 1.3rem;
    }
}

/* Desktop styles */
@media (min-width: 1024px) {
    .booking-header h1 {
        font-size: 3rem;
        line-height: 1.1;
        margin-bottom: 2rem;
    }
    
    #step1 h2 {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .datetime-header h3,
    .address-header h3 {
        font-size: 1.75rem;
    }
    
    .datetime-card-header h4,
    .address-card-header h4,
    .feature-category h4,
    .pricing-breakdown h4,
    .rental-summary h3,
    .addon-option h3,
    .step1-summary-section .rental-summary h3,
    .step3-left .rental-summary h3 {
        font-size: 1.5rem;
    }
}

/* Extra small mobile optimizations */
@media (max-width: 480px) {
    .booking-header h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    #step1 h2 {
        font-size: 1.4rem;
    }
    
    .datetime-header h3,
    .address-header h3 {
        font-size: 1.1rem;
    }
    
    .datetime-card-header h4,
    .address-card-header h4,
    .feature-category h4,
    .pricing-breakdown h4,
    .rental-summary h3,
    .addon-option h3,
    .step1-summary-section .rental-summary h3,
    .step3-left .rental-summary h3 {
        font-size: 1rem;
    }
}

/* ===== LAYOUT UTILITIES ===== */
.container-fluid {
    max-width: none;
    margin: 0 auto;
    padding: 0 var(--mobile-padding);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--mobile-padding);
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--mobile-padding);
}

/* Responsive container adjustments */
@media (min-width: 768px) {
    .container {
        padding: 0 var(--tablet-padding);
    }
    
    .container-fluid,
    .container-wide,
    .container-narrow {
        padding: 0 var(--tablet-padding);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--desktop-padding);
    }
    
    .container-fluid,
    .container-wide,
    .container-narrow {
        padding: 0 var(--desktop-padding);
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    text-align: center;
    width: 100%;
    max-width: 300px;
}

@media (min-width: 768px) {
    .btn {
        padding: 15px 30px;
        font-size: 1rem;
        width: auto;
    }
}

.btn-primary {
    background: linear-gradient(135deg, #ffb347, #ff5e62);
    color: white;
    border: none;
    box-shadow: 0 4px 18px rgba(255, 94, 98, 0.18);
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff5e62, #ffb347);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 94, 98, 0.28);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2c5aa0;
    transform: translateY(-3px);
}

.btn-orange {
    background: linear-gradient(135deg, #ffb347, #ff5e62);
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(255, 94, 98, 0.18);
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 300px;
}

@media (min-width: 768px) {
    .btn-orange {
        padding: 1rem 2rem;
        width: auto;
    }
}

.btn-orange:hover {
    background: linear-gradient(135deg, #ff5e62, #ffb347);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 94, 98, 0.28);
}

.btn-success {
    background: #2d5016;
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(45, 80, 22, 0.18);
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 300px;
}

@media (min-width: 768px) {
    .btn-success {
        padding: 1rem 2rem;
        width: auto;
    }
}

.btn-success:hover {
    background: #1e3a0f;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(45, 80, 22, 0.28);
}

.btn-full {
    width: 100%;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 3rem; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

.pulse {
    animation: pulse 2s infinite;
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* ===== BOOKING FORM STYLES ===== */
.booking-form-section {
    padding: 1rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

@media (min-width: 768px) {
    .booking-form-section {
        padding: 2rem 0;
    }
}

/* ===== PROFESSIONAL SLIDER PROGRESS BAR ===== */
.booking-progress {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 3rem auto 4rem;
    max-width: 800px;
    padding: 0 2rem;
    position: relative;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

/* Progress bar track */
.booking-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: #e2e8f0;
    transform: translateY(-50%);
    border-radius: 2px;
    z-index: 1;
}

/* Progress fill */
.booking-progress::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
    transform: translateY(-50%);
    border-radius: 2px;
    z-index: 2;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
}

/* Progress steps */
.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 3;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    min-width: auto;
    white-space: nowrap;
    flex-shrink: 0;
    text-align: center;
}

.progress-step:hover {
    transform: translateY(-2px);
}

.progress-step:focus {
    outline: none;
}

.progress-step.active {
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
}

.progress-step.completed {
    background: transparent;
    border: none;
    box-shadow: none;
}

/* Step number circles */
.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: 3px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 3;
}

.progress-step.active .step-number {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
    transform: scale(1.1);
}

.progress-step.completed .step-number {
    background: #10b981;
    color: white;
    border-color: #10b981;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

/* Checkmark for completed steps */
.progress-step.completed .step-number::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

/* Step labels */
.progress-step span {
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s ease;
    max-width: 80px;
    line-height: 1.2;
}

.progress-step.active span {
    color: #1e293b;
    font-weight: 600;
}

.progress-step.completed span {
    color: #065f46;
    font-weight: 500;
}

/* Progress bar width calculations */
.booking-progress[data-progress="1"]::after { width: 0%; }
.booking-progress[data-progress="2"]::after { width: 33.33%; }
.booking-progress[data-progress="3"]::after { width: 66.66%; }
.booking-progress[data-progress="4"]::after { width: 100%; }

/* Step animations */
@keyframes successBounce {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1.1);
    }
}

@keyframes stepPulse {
    0%, 100% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.15);
    }
}

/* ===== MOBILE SLIDER PROGRESS ===== */
@media (max-width: 767px) {
    .booking-progress {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .booking-progress {
        max-width: 600px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.875rem;
    }
    
    .progress-step span {
        font-size: 0.75rem;
        max-width: 70px;
    }
}

@media (min-width: 1024px) {
    .booking-progress {
        max-width: 800px;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }
    
    .progress-step span {
        font-size: 0.75rem;
        max-width: 80px;
    }
}

/* Extra small mobile */
@media (max-width: 480px) {
    .booking-progress {
        padding: 0 0.5rem;
    }
    
    .step-number {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
        border-width: 2px;
    }
    
    .progress-step span {
        font-size: 0.625rem;
        max-width: 50px;
    }
}



.booking-form-container {
    max-width: 100%;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

@media (min-width: 768px) {
    .booking-form-container {
        border-radius: 20px;
    }
}

.booking-step {
    display: none;
    padding: 1.5rem;
    animation: fadeIn 0.5s ease-in-out;
}

@media (min-width: 768px) {
    .booking-step {
        padding: 2.5rem;
    }
}

.booking-step.active {
    display: block;
}

/* ===== HORIZONTAL LAYOUT FOR STEP 4 ===== */
.step4-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
}

@media (min-width: 1024px) {
    .step4-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        padding: 2rem;
    }
}

/* Mobile: Summary first, Payment second (flexbox column order) */
.step4-left {
    /* order: 1; */
}

.step4-right {
    /* order: 2; */
}

/* Desktop: Summary left, Payment right (grid layout) */
@media (min-width: 1024px) {
    .step4-left {
        order: 1;
    }
    
    .step4-right {
        order: 2;
    }
}

/* ===== MOBILE STEP 4 STYLES ===== */
@media (max-width: 767px) {
    .step4-layout {
        padding: 0;
        gap: 1.5rem;
    }
    
    #step4 h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .final-summary {
        padding: 1.5rem;
        position: static;
        margin-bottom: 1.5rem;
    }
    
    .final-summary h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .payment-form {
        padding: 1.5rem;
    }
    
    .payment-header h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .security-notice {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
    }
    
    .security-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    #step4 h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .step4-layout {
        gap: 1rem;
    }
    
    .final-summary {
        padding: 1.25rem;
    }
    
    .final-summary h3 {
        font-size: 1.125rem;
    }
    
    .payment-form {
        padding: 1.25rem;
    }
    
    .payment-header h3 {
        font-size: 1.125rem;
    }
    
    .form-group input {
        padding: 0.75rem 0.875rem;
        font-size: 0.875rem;
    }
    
    .security-notice {
        padding: 1rem;
    }
    
    .security-content h4 {
        font-size: 1rem;
    }
    
    .security-content p {
        font-size: 0.8rem;
    }
}

/* ===== FINAL SUMMARY STYLING ===== */
.final-summary {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.final-summary h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-note {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.summary-item:last-child {
    border-bottom: none;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1e293b;
}

/* ===== EXTRA DAY WARNING STYLING ===== */
.extra-day-warning {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 0.75rem 1px;
    margin: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #dc2626;
    font-size: 0.9rem;
    font-weight: 500;
}

.extra-day-warning i {
    color: #dc2626;
    font-size: 1rem;
}

.extra-day-warning span {
    color: #dc2626;
}







/* ===== SECURITY NOTICE STYLING ===== */
.security-notice {
    background: #fef3c7;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
}

.security-notice .security-icon {
    margin-bottom: 1rem;
}

.security-notice .security-icon i {
    font-size: 2rem;
    color: #f59e0b;
}

.security-notice h4 {
    color: #92400e;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.security-notice p {
    color: #92400e;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.security-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.security-badge {
    background: #fbbf24;
    color: #92400e;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===== PAYMENT FORM STYLING ===== */
.payment-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.payment-header {
    text-align: center;
    margin-bottom: 2rem;
}

.payment-header h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.payment-header p {
    color: #64748b;
    font-size: 0.9rem;
}

.booking-step h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .booking-step h2 {
        margin-bottom: 2rem;
        font-size: 1.875rem;
    }
}

/* ===== HERO SECTION STYLING ===== */
.booking-header {
    background: #2c5aa0;
    color: white;
    text-align: center;
    padding: 3rem 1rem 2rem;
    margin-top: 0;
}

@media (min-width: 768px) {
    .booking-header {
        padding: 6rem 2rem 4rem;
    }
}

.booking-header .container {
    max-width: 800px;
}

.booking-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .booking-header h1 {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }
}

.booking-header p {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0;
    opacity: 0.95;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .booking-header p {
        font-size: 1.25rem;
        line-height: 1.6;
    }
}

/* ===== STEP 1 COMPLETE REDESIGN ===== */
#step1 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    #step1 {
        padding: 3rem 2rem;
        margin-bottom: 3rem;
    }
}

#step1 h2 {
    text-align: center;
    color: #374151;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

@media (min-width: 768px) {
    #step1 h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

#step1 h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #2c5aa0, #d4a574);
    border-radius: 2px;
}

@media (min-width: 768px) {
    #step1 h2::after {
        bottom: -0.75rem;
        width: 100px;
        height: 4px;
    }
}

/* Date and Time Section */
.step1-datetime-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .step1-datetime-section {
        border-radius: 20px;
        margin-bottom: 2.5rem;
    }
}

.datetime-header {
    background: linear-gradient(135deg, #64c8ff 0%, #3b82f6 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .datetime-header {
        padding: 2rem;
    }
}

.datetime-header h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .datetime-header h3 {
        font-size: 1.5rem;
    }
}

.datetime-header h3 i {
    color: #fbbf24;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .datetime-header h3 i {
        font-size: 1.25rem;
    }
}

.datetime-header p {
    color: #dbeafe;
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .datetime-header p {
        font-size: 1rem;
    }
}

.datetime-grid {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .datetime-grid {
        padding: 2rem;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.datetime-card {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .datetime-card {
        border-radius: 16px;
        padding: 1.5rem;
    }
}

.datetime-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

@media (min-width: 768px) {
    .datetime-card::before {
        height: 4px;
    }
}

.delivery-datetime::before {
    background: linear-gradient(90deg, #059669, #4a7c59);
}

.pickup-datetime::before {
    background: linear-gradient(90deg, #d4a574, #f59e0b);
}

.datetime-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.datetime-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f3f4f6;
}

@media (min-width: 768px) {
    .datetime-card-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
}

.datetime-card-header i {
    font-size: 1.25rem;
    color: #059669;
    background: #f0f9f0;
    padding: 0.5rem;
    border-radius: 8px;
}

@media (min-width: 768px) {
    .datetime-card-header i {
        font-size: 1.5rem;
        padding: 0.75rem;
        border-radius: 12px;
    }
}

.pickup-datetime .datetime-card-header i {
    color: #d4a574;
    background: #fef7ed;
}

.datetime-card-header h4 {
    color: #374151;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

@media (min-width: 768px) {
    .datetime-card-header h4 {
        font-size: 1.125rem;
    }
}

.datetime-card .form-group {
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .datetime-card .form-group {
        margin-bottom: 1.5rem;
    }
}

.datetime-card .form-group:last-child {
    margin-bottom: 0;
}

/* Promo Code Display Styles */
.promo-code-display {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .promo-code-display {
        border-radius: 16px;
        padding: 1.5rem;
        margin-top: 2rem;
    }
}

.promo-code-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #a855f7);
}

@media (min-width: 768px) {
    .promo-code-display::before {
        height: 4px;
    }
}

.promo-code-display:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.promo-code-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f3f4f6;
}

@media (min-width: 768px) {
    .promo-code-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
}

.promo-code-header h3 {
    color: #374151;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

@media (min-width: 768px) {
    .promo-code-header h3 {
        font-size: 1.125rem;
    }
}

.promo-code-header i {
    font-size: 1.25rem;
    color: #8b5cf6;
    background: #f5f3ff;
    padding: 0.5rem;
    border-radius: 8px;
}

@media (min-width: 768px) {
    .promo-code-header i {
        font-size: 1.5rem;
        padding: 0.75rem;
        border-radius: 12px;
    }
}

.promo-code-header p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
    margin-left: auto;
}

@media (min-width: 768px) {
    .promo-code-header p {
        font-size: 1rem;
    }
}

.promo-code-content .form-group {
    margin-bottom: 0;
}

.promo-code-content .form-group label {
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

@media (min-width: 768px) {
    .promo-code-content .form-group label {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
}

.promo-code-content .form-group input[type="text"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.875rem;
    background-color: #f9fafb;
    color: #6b7280;
    cursor: not-allowed;
}

@media (min-width: 768px) {
    .promo-code-content .form-group input[type="text"] {
        padding: 1rem;
        border-radius: 10px;
        font-size: 1rem;
    }
}

.promo-code-content .form-group input[type="text"]:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.datetime-card .form-group label {
    display: block;
    color: #374151;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .datetime-card .form-group label {
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
    }
}

.datetime-card .form-group input[type="date"],
.datetime-card .form-group select {
    width: 100%;
    min-width: auto;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    background: #f9fafb;
    color: #374151;
}

@media (min-width: 768px) {
    .datetime-card .form-group input[type="date"],
    .datetime-card .form-group select {
        min-width: 200px;
        padding: 1rem 1.25rem;
        border-radius: 12px;
        font-size: 1rem;
    }
}

.datetime-card .form-group input[type="date"]:focus,
.datetime-card .form-group select:focus {
    outline: none;
    border-color: #059669;
    background: white;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

@media (min-width: 768px) {
    .datetime-card .form-group input[type="date"]:focus,
    .datetime-card .form-group select:focus {
        box-shadow: 0 0 0 4px rgba(45, 90, 45, 0.1);
    }
}

/* Address Section */
.step1-address-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .step1-address-section {
        border-radius: 20px;
        margin-bottom: 2.5rem;
    }
}

.address-header {
    background: white;
    color: #374151;
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

@media (min-width: 768px) {
    .address-header {
        padding: 2rem;
    }
}

.address-header h3 {
    color: #374151;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .address-header h3 {
        font-size: 1.5rem;
    }
}

.address-header p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .address-header p {
        font-size: 1rem;
    }
}

.delivery-area-notice {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #0ea5e9;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #0369a1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.delivery-area-notice i {
    color: #0ea5e9;
    font-size: 1rem;
}

.delivery-area-notice strong {
    color: #0c4a6e;
    font-weight: 600;
}

@media (max-width: 767px) {
    .delivery-area-notice {
        margin: 1rem 0.5rem 0;
        padding: 0.625rem 0.875rem;
        font-size: 0.8rem;
    }
}

.delivery-area-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.delivery-areas-toggle {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.delivery-areas-toggle:hover {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    transform: translateY(-1px);
}

.delivery-areas-toggle.active {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.delivery-areas-detail {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #0ea5e9;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.75rem;
}

.area-group {
    background: white;
    border: 1px solid #e0f2fe;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.area-group h4 {
    color: #0c4a6e;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.area-group p {
    color: #0369a1;
    font-size: 0.8rem;
    margin: 0.25rem 0;
}

@media (max-width: 767px) {
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .area-group {
        padding: 0.75rem;
    }
    
    .delivery-areas-toggle {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
}

.address-area-error {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 1px solid #ef4444;
    border-radius: 6px;
    padding: 0.75rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #dc2626;
    animation: slideInError 0.3s ease-out;
}

.address-area-error i {
    color: #ef4444;
    font-size: 1rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* Valid address styling */
.form-group input.valid {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group input.valid:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

@keyframes slideInError {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.address-container {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .address-container {
        padding: 2rem;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.address-card {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .address-card {
        border-radius: 16px;
        padding: 1.5rem;
    }
}

.address-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

@media (min-width: 768px) {
    .address-card::before {
        height: 4px;
    }
}

.delivery-card::before {
    background: linear-gradient(90deg, #059669, #4a7c59);
}

.pickup-card::before {
    background: linear-gradient(90deg, #d4a574, #f59e0b);
}

.address-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.address-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f3f4f6;
}

@media (min-width: 768px) {
    .address-card-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
}

.address-card-header i {
    font-size: 1.25rem;
    color: #059669;
    background: #f0f9f0;
    padding: 0.5rem;
    border-radius: 8px;
}

@media (min-width: 768px) {
    .address-card-header i {
        font-size: 1.5rem;
        padding: 0.75rem;
        border-radius: 12px;
    }
}

.delivery-card .address-card-header i {
    color: #059669;
    background: #f0f9f0;
}

.pickup-card .address-card-header i {
    color: #d4a574;
    background: #fef7ed;
}

.address-card-header h4 {
    color: #374151;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

@media (min-width: 768px) {
    .address-card-header h4 {
        font-size: 1.125rem;
    }
}

.address-card .form-group {
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .address-card .form-group {
        margin-bottom: 1.5rem;
    }
}

.address-card .form-group label {
    display: block;
    color: #374151;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .address-card .form-group label {
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
    }
}

.address-card .form-group input[type="text"] {
    width: 100%;
    min-width: auto;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    background: #f9fafb;
    color: #374151;
}

@media (min-width: 768px) {
    .address-card .form-group input[type="text"] {
        min-width: 450px;
        padding: 1rem 1.25rem;
        border-radius: 12px;
        font-size: 1rem;
    }
}

.address-card .form-group input[type="text"]:focus {
    outline: none;
    border-color: #059669;
    background: white;
    box-shadow: 0 0 0 3px rgba(45, 90, 45, 0.1);
}

@media (min-width: 768px) {
    .address-card .form-group input[type="text"]:focus {
        box-shadow: 0 0 0 4px rgba(45, 90, 45, 0.1);
    }
}

.address-card .form-group input[type="text"]:read-only {
    background: #f8fafc;
    color: #6b7280;
    cursor: not-allowed;
    border-color: #d1d5db;
}

.address-details {
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
    .address-details {
        margin-top: 1.5rem;
        padding: 1.5rem;
        border-radius: 12px;
    }
}

.address-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .address-details-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

.address-details .form-group {
    margin-bottom: 0;
}

.address-details .form-group label {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .address-details .form-group label {
        font-size: 0.875rem;
    }
}

.address-details .form-group input[type="text"] {
    width: 100%;
    min-width: auto;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    border-radius: 6px;
}

@media (min-width: 768px) {
    .address-details .form-group input[type="text"] {
        min-width: 300px;
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
        border-radius: 8px;
    }
}

.address-actions {
    background: #f8fafc;
    padding: 1rem 1.5rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .address-actions {
        padding: 1.5rem 2rem;
    }
}

.same-address-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 300px;
    justify-content: center;
}

@media (min-width: 768px) {
    .same-address-toggle {
        padding: 1rem 1.5rem;
        border-radius: 12px;
        width: auto;
        max-width: none;
    }
}

.same-address-toggle:hover {
    border-color: #059669;
    box-shadow: 0 4px 16px rgba(45, 90, 45, 0.1);
}

.same-address-toggle input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #059669;
    cursor: pointer;
}

@media (min-width: 768px) {
    .same-address-toggle input[type="checkbox"] {
        width: 20px;
        height: 20px;
    }
}

.toggle-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
    font-weight: 500;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .toggle-label {
        font-size: 1rem;
    }
}

.toggle-label i {
    color: #059669;
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .toggle-label i {
        font-size: 0.875rem;
    }
}

/* Rental Summary Section */
.step1-summary-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .step1-summary-section {
        border-radius: 20px;
        margin-bottom: 2.5rem;
    }
}

.step1-summary-section .rental-summary {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e40af 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
    border-radius: 16px;
}

@media (min-width: 768px) {
    .step1-summary-section .rental-summary {
        padding: 2rem;
        border-radius: 20px;
    }
}

.step1-summary-section .rental-summary h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .step1-summary-section .rental-summary h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

.step1-summary-section .rental-summary h3 i {
    color: #fbbf24;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .step1-summary-section .rental-summary h3 i {
        font-size: 1.25rem;
    }
}

.step1-summary-section .rental-summary .summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
    min-height: 2rem;
}

@media (min-width: 768px) {
    .step1-summary-section .rental-summary .summary-item {
        padding: 0.75rem 0;
        min-height: 2.5rem;
    }
}

.step1-summary-section .rental-summary .summary-item:last-child {
    border-bottom: none;
}

.step1-summary-section .rental-summary .summary-item span:first-child {
    color: #dbeafe;
    font-weight: 500;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .step1-summary-section .rental-summary .summary-item span:first-child {
        font-size: 1rem;
    }
}

.step1-summary-section .rental-summary .summary-item span:last-child {
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .step1-summary-section .rental-summary .summary-item span:last-child {
        font-size: 1rem;
    }
}

/* Step Buttons */
.step-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
    padding: 1.5rem;
    gap: 1rem;
}

@media (min-width: 768px) {
    .step-buttons {
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
        padding: 2rem;
        gap: 1.5rem;
    }
}

/* Step 1 continue button - right aligned */
#step1 .step-buttons {
    justify-content: flex-end;
}

/* Other steps with back buttons - left aligned */
#step2 .step-buttons,
#step3 .step-buttons {
    justify-content: flex-start;
}

.step-buttons .btn {
    min-width: 200px;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

@media (min-width: 768px) {
    .step-buttons .btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: auto;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .cart-selection-container {
        grid-template-columns: 1fr;
    }
    
    .date-selection {
            grid-template-columns: 1fr;
        }
        
    .step-buttons {
            flex-direction: column;
            align-items: center;
    }
    
    .step-buttons .btn {
    width: 100%;
    max-width: 300px;
}

    .booking-progress {
        justify-content: space-between;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding: 0 1rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .booking-progress::-webkit-scrollbar {
        display: none;
    }
    
    .progress-step {
        flex: 1;
        min-width: 80px;
        text-align: center;
    }
    
    .progress-step.active {
        transform: scale(1.1);
    }

    .select-btn {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
        display: block;
    }
    
    /* Mobile Complete Secure Booking Button Slider */
    .btn-success {
        position: relative;
        overflow: hidden;
    }
    
    .btn-success::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }
    
    .btn-success:hover::before {
        left: 100%;
    }
    
    .btn-success:active::before {
        left: 100%;
    }
}

/* Responsive hero design */
@media (max-width: 768px) {
    .booking-header {
        padding: 5rem 1rem 3rem;
        margin-top: 0;
    }
    
    .booking-header h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .booking-header p {
    font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .booking-header {
        padding: 6rem 1rem 3rem;
        margin-top: 0;
    }
    
    .booking-header h1 {
        font-size: 2rem;
    }
    
    .booking-header p {
    font-size: 1rem;
}
}

/* ===== HIDE AUTOFILL BUTTONS ===== */
/* Hide browser-generated autofill buttons and elements */
div[style*="autofill"],
div[style*="Autofill"],
div[style*="== $0"],
div[style*="position: absolute"][style*="right: -6px"],
div[style*="width: 106px"][style*="height: 32px"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Hide any elements with autofill-related content */
div:contains("Autofill"),
div:contains("autofill") {
    display: none !important;
}

/* Hide Chrome autofill buttons specifically */
input:-webkit-autofill + div,
input:-webkit-autofill ~ div {
    display: none !important;
}

/* Hide any floating autofill elements */
div[style*="position: absolute"][style*="top: 50%"] {
    display: none !important;
}

/* ===== MOBILE INPUT TRANSPARENCY STYLES ===== */
@media (max-width: 767px) {
    /* Make input backgrounds much more see-through on mobile ONLY */
    .form-group input[type="text"],
    .form-group input[type="date"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group select,
    .form-group textarea {
        background: rgba(249, 250, 251, 0.08) !important; /* Barely visible - almost invisible */
        backdrop-filter: blur(0.2px) !important; /* Minimal blur for barely visible effect */
    }
    
    .form-group input[type="text"]:focus,
    .form-group input[type="date"]:focus,
    .form-group input[type="email"]:focus,
    .form-group input[type="tel"]:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        background: rgba(255, 255, 255, 0.12) !important; /* Barely visible white */
        backdrop-filter: blur(0.5px) !important; /* Minimal blur on focus for barely visible effect */
    }
    
    /* Specific input types that have their own background rules - MOBILE ONLY */
    .promo-code-content .form-group input[type="text"] {
        background-color: rgba(249, 250, 251, 0.08) !important;
        backdrop-filter: blur(0.2px) !important;
    }
    
    .datetime-card .form-group input[type="date"],
    .datetime-card .form-group select {
        background: rgba(249, 250, 251, 0.08) !important;
        backdrop-filter: blur(0.2px) !important;
    }
    
    .datetime-card .form-group input[type="date"]:focus,
    .datetime-card .form-group select:focus {
        background: rgba(255, 255, 255, 0.12) !important;
        backdrop-filter: blur(0.5px) !important;
    }
    
    .address-card .form-group input[type="text"] {
        background: rgba(249, 250, 251, 0.08) !important;
        backdrop-filter: blur(0.2px) !important;
    }
    
    .address-card .form-group input[type="text"]:focus {
        background: rgba(255, 255, 255, 0.12) !important;
        backdrop-filter: blur(0.5px) !important;
    }
    
    .address-card .form-group input[type="text"]:read-only {
        background: rgba(248, 250, 252, 0.08) !important;
        backdrop-filter: blur(0.2px) !important;
    }
}

/* ===== DESKTOP INPUT STYLES ===== */
@media (min-width: 768px) {
    /* Make input backgrounds white on desktop - HIGH SPECIFICITY */
    .form-group input[type="text"],
    .form-group input[type="date"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group input[type="time"],
    .form-group select,
    .form-group textarea {
        background: #ffffff !important; /* White background for desktop */
        color: #333333 !important; /* Dark text for contrast */
        border-color: #e2e8f0 !important; /* Light border */
    }
    
    .form-group input[type="text"]:focus,
    .form-group input[type="date"]:focus,
    .form-group input[type="email"]:focus,
    .form-group input[type="tel"]:focus,
    .form-group input[type="time"]:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        background: #ffffff !important; /* White background on focus */
        color: #333333 !important; /* Dark text */
        border-color: #64c8ff !important; /* Blue border on focus */
    }
    
    /* Force ALL inputs to be white on desktop */
    input[type="text"],
    input[type="date"],
    input[type="email"],
    input[type="tel"],
    input[type="time"],
    input[type="number"],
    select,
    textarea {
        background: #ffffff !important;
        color: #ffffff !important;
        border-color: #333333 !important;
    }
    
    input[type="text"]:focus,
    input[type="date"]:focus,
    input[type="email"]:focus,
    input[type="tel"]:focus,
    input[type="time"]:focus,
    input[type="number"]:focus,
    select:focus,
    textarea:focus {
        background: #ffffff !important;
        color: #333333 !important;
        border-color: #64c8ff !important;
    }
    
    /* Override specific existing styles with maximum specificity */
    .datetime-card .form-group input[type="date"],
    .datetime-card .form-group select,
    .datetime-card .form-group input[type="time"] {
        background: #ffffff !important;
        color: #333333 !important;
        border-color: #e2e8f0 !important;
    }
    
    .datetime-card .form-group input[type="date"]:focus,
    .datetime-card .form-group select:focus,
    .datetime-card .form-group input[type="time"]:focus {
        background: #ffffff !important;
        color: #333333 !important;
        border-color: #64c8ff !important;
    }
    
    .promo-code-content .form-group input[type="text"] {
        background-color: #ffffff !important;
        color: #333333 !important;
        border-color: #e2e8f0 !important;
    }
    
    .address-card .form-group input[type="text"] {
        background: #ffffff !important;
        color: #333333 !important;
        border-color: #e2e8f0 !important;
    }
    
    .address-card .form-group input[type="text"]:focus {
        background: #ffffff !important;
        color: #333333 !important;
        border-color: #64c8ff !important;
    }
    
    .address-card .form-group input[type="text"]:read-only {
        background: #f8fafc !important; /* Light gray for read-only */
        color: #64748b !important; /* Muted text */
        border-color: #e2e8f0 !important;
    }
    
    /* Override any existing background styles with maximum force */
    .datetime-card input,
    .address-card input,
    .promo-code-content input,
    .form-group input,
    .form-group select,
    .form-group textarea {
        background: #ffffff !important;
        color: #333333 !important;
        border-color: #e2e8f0 !important;
    }
    
    .datetime-card input:focus,
    .address-card input:focus,
    .promo-code-content input:focus,
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        background: #ffffff !important;
        color: #333333 !important;
        border-color: #64c8ff !important;
    }
}

/* ===== FORCE DESKTOP WHITE INPUTS - MAXIMUM SPECIFICITY ===== */
@media (min-width: 768px) {
    /* Nuclear option - force ALL inputs to be white with maximum specificity */
    body .container .booking-step .form-group input[type="text"],
    body .container .booking-step .form-group input[type="date"],
    body .container .booking-step .form-group input[type="email"],
    body .container .booking-step .form-group input[type="tel"],
    body .container .booking-step .form-group input[type="time"],
    body .container .booking-step .form-group select,
    body .container .booking-step .form-group textarea {
        background: #ffffff !important;
        background-color: #ffffff !important;
        color: #333333 !important;
        border-color: #e2e8f0 !important;
    }
    
    /* Force specific components */
    body .datetime-card .form-group input[type="date"],
    body .datetime-card .form-group input[type="time"],
    body .datetime-card .form-group select,
    body .address-card .form-group input[type="text"],
    body .promo-code-content .form-group input[type="text"] {
        background: #ffffff !important;
        background-color: #ffffff !important;
        color: #333333 !important;
        border-color: #e2e8f0 !important;
    }
    
    /* Override any existing styles with inline-level specificity */
    body .datetime-card input,
    body .address-card input,
    body .promo-code-content input {
        background: #ffffff !important;
        background-color: #ffffff !important;
        color: #333333 !important;
        border-color: #e2e8f0 !important;
    }
}
