:root {
    --primary-color: #0abff6;
    --secondary-color: #353535;
    --success-color: #059669;
    --warning-color: #d97706;
    --danger-color: #dc2626;
    --light-gray: #f8fafc;
    --medium-gray: #e2e8f0;
    --dark-gray: #334155;
    --gradient: linear-gradient(135deg, #0abff6 0%, #0891d4 100%);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--light-gray);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--dark-gray);
}

.app-container {
    min-height: 100vh;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-container {
    width: 100%;
    max-width: 480px;
    margin: 20px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: relative;
}

.step-header {
    background: #cbefff;
    color: var(--dark-gray);
    padding: 32px 24px 24px;
    text-align: center;
    position: relative;
}

.step-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.step-header h2 {
    margin: 0 0 8px;
    font-weight: 700;
    font-size: 1.75rem;
}

.step-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
}

.step-content {
    padding: 32px 24px;
}

.progress-container {
    margin-bottom: 32px;
}

.progress-bar-custom {
    height: 4px;
    background: var(--medium-gray);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 16px;
}

.progress-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-info {
    text-align: center;
    color: var(--secondary-color);
    font-size: 0.875rem;
    font-weight: 500;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--medium-gray);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    background: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--dark-gray);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(10, 191, 246, 0.1);
    transform: translateY(-1px);
}

.form-control::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.btn {
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(10, 191, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 191, 246, 0.5);
    background: var(--gradient);
}

.btn-outline {
    background: white;
    border: 2px solid var(--medium-gray);
    color: var(--secondary-color);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
}

.navigation-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.navigation-buttons .btn {
    flex: 1;
}

.service-option {
    border: 2px solid var(--medium-gray);
    border-radius: 16px;
    padding: 20px;
    margin: 12px 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    position: relative;
}

.service-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(10, 191, 246, 0.15);
}

.service-option.selected {
    border-color: var(--primary-color);
    background: rgba(10, 191, 246, 0.05);
}

.service-option.selected::before {
    content: '✓';
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.75rem;
}

.service-title {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--dark-gray);
    margin-bottom: 4px;
}

.service-description {
    color: var(--secondary-color);
    font-size: 0.875rem;
    margin-bottom: 8px;
    line-height: 1.5;
}

.service-price {
    font-weight: 700;
    color: var(--success-color);
    font-size: 1rem;
}

.verification-container {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 24px 0;
}

.verification-input {
    width: 56px;
    height: 56px;
    text-align: center;
    border: 2px solid var(--medium-gray);
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

.verification-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(10, 191, 246, 0.1);
}

.info-card {
    background: rgba(10, 191, 246, 0.05);
    border: 1px solid rgba(10, 191, 246, 0.1);
    border-radius: 16px;
    padding: 24px;
    margin: 20px 0;
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.info-card-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.info-card h5 {
    margin: 0;
    font-weight: 700;
    color: var(--dark-gray);
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border: 2px solid var(--medium-gray);
    border-radius: 12px;
    margin: 12px 0;
    transition: all 0.3s ease;
}

.addon-item:hover {
    border-color: var(--primary-color);
}

.addon-info h6 {
    margin: 0 0 4px;
    font-weight: 600;
    color: var(--dark-gray);
}

.addon-info p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--secondary-color);
}

.addon-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.addon-price {
    font-weight: 700;
    color: var(--success-color);
    min-width: 60px;
    text-align: right;
}

.custom-checkbox {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
}

.order-summary {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 24px;
    margin: 24px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.summary-row:last-child {
    border-bottom: none;
    padding-top: 16px;
    font-weight: 700;
    font-size: 1.125rem;
}

.summary-label {
    color: var(--secondary-color);
    font-weight: 500;
}

.summary-value {
    font-weight: 600;
    color: var(--dark-gray);
}

.tip-section {
    background: linear-gradient(135deg, #e9d5ff 0%, #c4b5fd 100%);
    border-radius: 16px;
    padding: 24px;
    margin: 24px 0;
}

.tip-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 16px 0;
}

.tip-btn {
    padding: 12px 8px;
    border: 2px solid var(--secondary-color);
    background: white;
    color: var(--secondary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tip-btn:hover,
.tip-btn.active {
    background: var(--secondary-color);
    color: white;
}

.time-slot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 16px 0;
}

.time-slot {
    padding: 16px;
    border: 2px solid var(--medium-gray);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.time-slot:hover {
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.time-slot.selected {
    border-color: var(--primary-color);
    background: rgba(10, 191, 246, 0.05);
}

.uber-info {
    background: linear-gradient(135deg, #111827 0%, #374151 100%);
    color: white;
    border-radius: 16px;
    padding: 24px;
    margin: 24px 0;
}

.uber-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.uber-logo {
    width: 48px;
    height: 48px;
    background: white;
    color: #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

.success-container {
    text-align: center;
    padding: 40px 24px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
}

.hidden {
    display: none;
}

.fade-in {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.logo-container {
    margin-bottom: 16px;
}

.header-logo {
    height: 90px;
}

.quantity-container {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid var(--medium-gray);
    border-radius: 12px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
}

.quantity-container:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(10, 191, 246, 0.1);
}

.quantity-btn {
    width: 48px;
    height: 56px;
    border: none;
    background: var(--light-gray);
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
}

.quantity-btn:hover {
    background: var(--primary-color);
    color: white;
}

.quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quantity-input {
    flex: 1;
    border: none;
    padding: 16px 20px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-gray);
    background: white;
    outline: none;
}

#faqLink:hover {
    background: var(--primary-color);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 191, 246, 0.3);
}

#termsLink:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .main-container {
        margin: 10px;
        border-radius: 20px;
    }

    .step-content {
        padding: 24px 20px;
    }

    .tip-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Modal Css */


.terms-condition-modal .modal-dialog {max-width: 55vw;}

.terms-condition-modal h1#exampleModalLabel {
    font-size: 40px !important;
}

.terms-condition-modal th, .terms-condition-modal td {
    font-size: 14px;
}

button.btn-close {
    width: 30px;
    height: 30px;
    border: 2px solid #0abdf3;
    border-radius: 50px;
}

button.btn-close:hover {
    background-color: #0abdf3;
    backdrop-filter: brightness(5);
}

.terms-condition-modal .about-sec.inner-about-sec.sec {
    height: 550px;
    overflow-y: scroll;
    position: relative;
    z-index: 1;
}

.terms-condition-modal  .checkbox-container {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
}
/* Modal Css */