/* ================================
   RESERVATION PAGE STYLES
   ================================ */

.reservation-main {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.reservation-hero {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.reservation-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.reservation-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ================================
   PROGRESS STEPS
   ================================ */

.reservation-container {
    padding: 60px 20px;
}

.reservation-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 3px;
    background: #e0e0e0;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: white;
    transform: scale(1.1);
}

.step.completed .step-number {
    background: #28a745;
    color: white;
}

.step span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.step.active span {
    color: #D4AF37;
    font-weight: 600;
}

/* ================================
   FORM STEPS
   ================================ */

.reservation-form {
    position: relative;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

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

.form-step h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

/* ================================
   SERVICE TYPE CARDS
   ================================ */

.service-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.service-card {
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.selected {
    border-color: #D4AF37;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(184, 134, 11, 0.05) 100%);
}

.service-card.selected::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 15px;
    min-height: 40px;
}

.service-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #D4AF37;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff6b6b;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-badge.special-badge {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    animation: pulse 2s infinite;
}

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

/* ================================
   VEHICLE CARDS
   ================================ */

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.vehicle-card {
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.vehicle-card.selected {
    border-color: #D4AF37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.vehicle-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.vehicle-info {
    padding: 20px;
}

.vehicle-info h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.vehicle-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.vehicle-specs span {
    font-size: 0.9rem;
    color: #666;
}

.vehicle-specs i {
    color: #D4AF37;
    margin-right: 8px;
}

.vehicle-features {
    display: flex;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.vehicle-features i {
    font-size: 1.2rem;
    color: #D4AF37;
}

/* ================================
   FORM INPUTS
   ================================ */

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: #D4AF37;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Select Dropdown Styles */
.form-group select {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
    background-color: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23D4AF37' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-group select:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Zone Selection Styles */
.zone-select option {
    padding: 10px;
}

/* Zone Price Display */
.zone-price-display {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(184, 134, 11, 0.1) 100%);
    border: 2px solid #D4AF37;
    border-radius: 12px;
    padding: 20px;
    margin-top: 10px;
}

#priceDisplayContainer {
    display: none;
}

.zone-price-display .price-hint {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.zone-price-display .price-hint i {
    color: #D4AF37;
}

.zone-price-display .price-unavailable {
    color: #dc3545;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.zone-price-card {
    text-align: center;
}

.zone-price-card .zone-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.zone-price-card .zone-area {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.5);
}

.zone-price-card .route-info {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.zone-price-card .route-info i {
    color: #D4AF37;
}

.zone-price-card .price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.zone-price-card .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.zone-price-card .price-row span {
    color: #666;
}

.zone-price-card .price-row strong {
    color: #333;
    font-family: 'Courier New', monospace;
}

.zone-price-card .price-row.total {
    border-top: 2px solid #D4AF37;
    margin-top: 10px;
    padding-top: 15px;
}

.zone-price-card .price-row.total span {
    font-weight: 700;
    color: #333;
    font-size: 1.1rem;
}

.zone-price-card .price-row.total strong {
    color: #D4AF37;
    font-size: 1.3rem;
    font-weight: 700;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.checkbox-label:hover {
    background: #f5f7fa;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* ================================
   SUMMARY CARD
   ================================ */

.summary-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
}

.summary-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

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

.summary-section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-section h3 i {
    color: #D4AF37;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 8px 0;
}

.summary-item span {
    color: #666;
}

.summary-item strong {
    color: #333;
    text-align: right;
}

.price-section {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
}

.price-section h3 {
    color: white;
}

.price-display {
    text-align: center;
    margin: 20px 0;
}

.price-display span {
    font-size: 3rem;
    font-weight: bold;
    display: block;
}

.price-display small {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Price Breakdown in Summary */
.price-breakdown-summary {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 15px 20px;
    margin: 15px 0;
}

.price-breakdown-summary .summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
}

.price-breakdown-summary .summary-item:last-child {
    border-bottom: none;
}

.price-breakdown-summary .summary-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.price-breakdown-summary .summary-item strong {
    color: white;
    font-size: 1.1rem;
}

.price-breakdown-summary .total-row {
    border-top: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: none;
    margin-top: 10px;
    padding-top: 15px;
}

.price-breakdown-summary .total-row span {
    font-size: 1.2rem;
    font-weight: 700;
}

.price-breakdown-summary .total-row strong {
    font-size: 1.5rem;
    font-weight: 700;
}

.price-note {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 10px;
}

.terms-checkbox {
    margin-top: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
}

.terms-checkbox label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.terms-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.terms-checkbox a {
    color: #D4AF37;
    text-decoration: underline;
}

/* ================================
   NAVIGATION BUTTONS
   ================================ */

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: #e0e0e0;
    color: #333;
}

.btn-secondary:hover {
    background: #d0d0d0;
}

.btn-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.4);
}

/* ================================
   SUCCESS MESSAGE
   ================================ */

.success-message {
    text-align: center;
    padding: 60px 20px;
    animation: fadeIn 0.5s ease;
}

.success-animation {
    position: relative;
    margin-bottom: 30px;
}

.success-icon {
    font-size: 6rem;
    color: #28a745;
    margin-bottom: 20px;
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-checkmark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
}

.checkmark {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: #28a745;
    stroke-miterlimit: 10;
    animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: #28a745;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

.success-message h2 {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.success-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 40px;
}

.reservation-details-box {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    border-radius: 15px;
    padding: 30px;
    margin: 30px auto;
    max-width: 600px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.detail-item i {
    font-size: 2.5rem;
    opacity: 0.9;
}

.detail-item .detail-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.detail-item .detail-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
}

.success-info {
    margin: 40px 0;
}

.info-card {
    background: #f8f9fa;
    border-left: 4px solid #D4AF37;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    align-items: start;
    text-align: left;
}

.info-card i {
    font-size: 2rem;
    color: #D4AF37;
    margin-top: 5px;
}

.info-card h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.contact-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 2rem;
    color: #D4AF37;
}

.contact-card.contact-card:nth-child(2) i {
    color: #25D366;
}

.contact-card span {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

.contact-card strong {
    display: block;
    font-size: 1rem;
    color: #333;
    margin-top: 5px;
}

.success-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.success-actions .btn {
    flex: 0 1 auto;
    min-width: 200px;
}

.success-actions a.btn {
    text-decoration: none;
}

.success-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.success-footer p {
    font-size: 1.1rem;
    color: #D4AF37;
    font-weight: 500;
}

/* Activity Select Styling */
.activity-select {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    width: 100%;
    background: white;
    cursor: pointer;
}

.activity-select:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* ================================
   PAYMENT METHOD CARDS
   ================================ */

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.payment-card {
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.payment-card:hover::before {
    transform: scaleX(1);
}

.payment-card.selected {
    border-color: #D4AF37;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(184, 134, 11, 0.05) 100%);
}

.payment-card.selected::before {
    transform: scaleX(1);
}

.payment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.payment-icon.mercadopago-icon {
    background: linear-gradient(135deg, #009EE3 0%, #0077CC 100%);
}

.payment-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.payment-card p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.payment-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Payment Details Sections */
.payment-details {
    margin-top: 30px;
    animation: fadeIn 0.5s ease;
}

.payment-info-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    border-left: 4px solid #D4AF37;
}

.payment-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-info-card h3 i {
    color: #D4AF37;
}

.payment-info-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.payment-amount-display {
    background: white;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    border: 2px solid #D4AF37;
}

.payment-amount-display span {
    font-size: 1.1rem;
    color: #666;
}

.payment-amount-display strong {
    font-size: 1.5rem;
    color: #D4AF37;
}

/* Payment Breakdown with Tax */
.payment-breakdown {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #e0e0e0;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #e0e0e0;
}

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

.breakdown-item span {
    color: #666;
    font-size: 1rem;
}

.breakdown-item strong {
    color: #333;
    font-size: 1rem;
    font-family: 'Courier New', monospace;
}

.breakdown-item.total {
    border-top: 2px solid #D4AF37;
    border-bottom: none;
    margin-top: 10px;
    padding-top: 15px;
}

.breakdown-item.total span {
    color: #333;
    font-weight: 700;
    font-size: 1.2rem;
}

.breakdown-item.total strong {
    color: #D4AF37;
    font-size: 1.5rem;
    font-weight: 700;
}

.payment-button-wrapper {
    margin: 20px 0;
}

.btn-mercadopago {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #009EE3 0%, #0077CC 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    text-align: center;
}

.btn-mercadopago:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 158, 227, 0.4);
    color: white;
}

.payment-note {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    display: flex;
    gap: 15px;
    align-items: start;
}

.payment-note i {
    color: #856404;
    font-size: 1.5rem;
    margin-top: 2px;
}

.payment-note p {
    color: #856404;
    margin: 0;
    line-height: 1.6;
}

/* Bank Transfer Info */
.bank-info {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin: 20px 0;
}

.bank-section-title {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #D4AF37;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bank-section-title i {
    color: #D4AF37;
}

.bank-detail {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.bank-detail:last-child {
    border-bottom: none;
}

.bank-detail .label {
    color: #666;
    font-weight: 500;
}

.bank-detail strong {
    color: #333;
    font-family: 'Courier New', monospace;
    text-align: right;
}

.bank-detail .highlight-info {
    color: #D4AF37;
    font-weight: 700;
    font-size: 1.05rem;
}

/* Transfer Type Selector */
.transfer-type-selector {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 10px;
}

.transfer-type-btn {
    flex: 1;
    padding: 15px 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.transfer-type-btn:hover {
    border-color: #D4AF37;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.transfer-type-btn.active {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    border-color: #D4AF37;
    color: white;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.transfer-type-btn i {
    font-size: 1.2rem;
}

/* International Transfer Note */
.international-note {
    background: #e3f2fd;
    border: 2px solid #2196f3;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    display: flex;
    gap: 15px;
    align-items: start;
}

.international-note i {
    color: #1976d2;
    font-size: 1.8rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.international-note strong {
    color: #1565c0;
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.international-note ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
    color: #0d47a1;
}

.international-note li {
    margin: 8px 0;
    line-height: 1.5;
}

.transfer-note {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    display: flex;
    gap: 15px;
    align-items: start;
}

.transfer-note i {
    color: #856404;
    font-size: 1.5rem;
    margin-top: 2px;
}

.transfer-note p {
    color: #856404;
    margin: 0;
    line-height: 1.6;
}

/* Cash Payment Options */
.payment-options-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.payment-options-list li {
    padding: 12px 15px;
    background: white;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-options-list li i {
    color: #28a745;
    font-size: 1.2rem;
}

.cash-note {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    display: flex;
    gap: 15px;
    align-items: start;
}

.cash-note i {
    color: #0c5460;
    font-size: 1.5rem;
    margin-top: 2px;
}

.cash-note p {
    color: #0c5460;
    margin: 0;
    line-height: 1.6;
}

/* Deposit Info Card */
.deposit-info {
    margin-top: 30px;
}

.deposit-card {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: white;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: start;
}

.deposit-card i {
    font-size: 2.5rem;
    opacity: 0.9;
}

.deposit-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.deposit-card p {
    opacity: 0.95;
    line-height: 1.6;
}

/* PayPal Button Container */
#paypal-button-container {
    max-width: 500px;
    margin: 0 auto;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 992px) {
    .reservation-hero h1 {
        font-size: 2.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .reservation-wrapper {
        padding: 20px;
    }

    .reservation-hero h1 {
        font-size: 2rem;
    }

    .progress-steps {
        flex-wrap: wrap;
        gap: 20px;
    }

    .step {
        flex: 0 0 calc(50% - 10px);
    }

    .progress-steps::before {
        display: none;
    }

    .service-types,
    .vehicle-grid {
        grid-template-columns: 1fr;
    }

    .form-navigation {
        flex-direction: column;
    }

    .btn {
        flex: none;
    }

    .step span {
        font-size: 0.8rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .reservation-hero {
        padding: 40px 20px;
    }

    .reservation-hero h1 {
        font-size: 1.5rem;
    }

    .form-step h2 {
        font-size: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .price-display span {
        font-size: 2.5rem;
    }
}

/* ================================
   MULTI-VEHICLE SELECTION
   ================================ */

.vehicle-card {
    position: relative;
}

.vehicle-quantity-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.vehicle-quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: 2px solid #D4AF37;
    background: white;
    color: #D4AF37;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #D4AF37;
    color: white;
}

.qty-btn.minus:hover {
    background: #dc3545;
    border-color: #dc3545;
}

.qty-display {
    font-size: 20px;
    font-weight: bold;
    color: #1a1a2e;
    min-width: 30px;
    text-align: center;
}

.vehicle-card.selected .vehicle-quantity-controls {
    display: flex !important;
}

.vehicle-card.selected .vehicle-quantity-badge {
    display: flex !important;
}

#selectedVehiclesSummary {
    animation: slideDown 0.3s ease;
}

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

#selectedVehiclesList {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.selected-vehicle-tag {
    background: white;
    border: 1px solid #bbf7d0;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.selected-vehicle-tag .vehicle-name {
    font-weight: 600;
    color: #1a1a2e;
}

.selected-vehicle-tag .vehicle-qty {
    background: #D4AF37;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

.selected-vehicle-tag .vehicle-price {
    color: #16a34a;
    font-weight: 600;
}
