/* ================================
   RESERVATION PAGE STYLES
   v2 — single-page accordion + sticky summary
   ================================ */

.reservation-main {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.reservation-hero {
    background: linear-gradient(135deg, #17A2B8 0%, #12808F 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;
}

.reservation-container {
    padding: 50px 20px 100px;
}

.reservation-container .container {
    max-width: 1280px;
}

/* ================================
   TWO-COLUMN LAYOUT
   ================================ */

.reservation-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 30px;
    align-items: start;
}

.reservation-form-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
}

.summary-col {
    position: sticky;
    top: 20px;
}

/* ================================
   ACCORDION SECTIONS
   ================================ */

.acc-section {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.25s ease;
}

.acc-section.open {
    border-color: rgba(212, 175, 55, 0.35);
}

.acc-section.complete:not(.open) {
    border-color: rgba(40, 167, 69, 0.25);
}

.acc-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 26px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.acc-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.acc-step-dot {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f0f2f5;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}

.acc-step-dot i {
    display: none;
}

.acc-section.complete .acc-step-dot {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.acc-section.complete .acc-step-dot i {
    display: block;
}

.acc-section.open .acc-step-dot:not(:has(i)) {
    background: linear-gradient(135deg, #17A2B8 0%, #12808F 100%);
    color: white;
}

.acc-header-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.acc-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0a2540;
}

.acc-subtitle {
    font-size: 0.88rem;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.acc-section.complete .acc-subtitle {
    color: #16a34a;
    font-weight: 600;
}

.acc-chevron {
    flex-shrink: 0;
    color: #aaa;
    transition: transform 0.25s ease;
}

.acc-section.open .acc-chevron {
    transform: rotate(180deg);
    color: #17A2B8;
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.acc-section.open .acc-body {
    max-height: none;
    overflow: visible;
}

.acc-body-inner-padding {
    padding: 0 26px 26px;
}

.acc-body[data-body] {
    padding: 0 26px;
}

.acc-section.open .acc-body[data-body] {
    padding: 0 26px 26px;
}

.acc-hint {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

.acc-hint i {
    color: #17A2B8;
}

.acc-footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid #eee;
}

.btn-acc-next,
.btn-acc-back {
    padding: 13px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    transition: all 0.25s ease;
}

.btn-acc-next {
    background: linear-gradient(135deg, #17A2B8 0%, #12808F 100%);
    color: white;
    margin-left: auto;
}

.btn-acc-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(212, 175, 55, 0.4);
}

.btn-acc-back {
    background: #f0f2f5;
    color: #555;
}

.btn-acc-back:hover {
    background: #e2e5e9;
}

/* ================================
   SERVICE TYPE CARDS
   ================================ */

.service-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 10px;
}

.service-card {
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 15px;
    padding: 26px 22px;
    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, #17A2B8 0%, #12808F 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: #17A2B8;
    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: 68px;
    height: 68px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #17A2B8 0%, #12808F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.7rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 12px;
    min-height: 40px;
    font-size: 0.92rem;
}

.service-price {
    font-size: 1.15rem;
    font-weight: bold;
    color: #17A2B8;
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #ff6b6b;
    color: white;
    padding: 4px 13px;
    border-radius: 20px;
    font-size: 0.75rem;
    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(260px, 1fr));
    gap: 20px;
    margin-bottom: 10px;
}

.vehicle-card {
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.vehicle-card.selected {
    border-color: #17A2B8;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.vehicle-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.vehicle-info {
    padding: 18px;
}

.vehicle-info h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #333;
}

.vehicle-specs {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.vehicle-specs span {
    font-size: 0.88rem;
    color: #666;
}

.vehicle-specs i {
    color: #17A2B8;
    margin-right: 8px;
}

.vehicle-features {
    display: flex;
    gap: 13px;
    padding-top: 12px;
    border-top: 1px solid #e0e0e0;
}

.vehicle-features i {
    font-size: 1.1rem;
    color: #17A2B8;
}

.vehicle-quantity-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #17A2B8 0%, #12808F 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: 14px;
    margin-top: 14px;
    padding: 9px;
    background: #f8f9fa;
    border-radius: 8px;
}

.qty-btn {
    width: 34px;
    height: 34px;
    border: 2px solid #17A2B8;
    background: white;
    color: #17A2B8;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #17A2B8;
    color: white;
}

.qty-btn.minus:hover {
    background: #dc3545;
    border-color: #dc3545;
}

.qty-display {
    font-size: 19px;
    font-weight: bold;
    color: #0a2540;
    min-width: 28px;
    text-align: center;
}

.vehicle-card.selected .vehicle-quantity-controls,
.vehicle-card.selected .vehicle-quantity-badge {
    display: flex !important;
}

.selected-vehicles-summary {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.selected-vehicles-summary h4 {
    color: #16a34a;
    margin-bottom: 10px;
}

.selected-vehicles-capacity {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #bbf7d0;
}

#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: #0a2540;
}

.selected-vehicle-tag .vehicle-qty {
    background: #17A2B8;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

/* ================================
   FORM INPUTS
   ================================ */

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 7px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
}

.form-group label i {
    color: #17A2B8;
}

.form-group input,
.form-group textarea {
    padding: 11px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.96rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #17A2B8;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group select {
    padding: 13px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.96rem;
    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: #17A2B8;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.zone-price-display {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(184, 134, 11, 0.1) 100%);
    border: 2px solid #17A2B8;
    border-radius: 12px;
    padding: 20px;
    margin-top: 6px;
}

#priceDisplayContainer {
    display: none;
}

.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;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 9px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.checkbox-label:hover {
    background: #f5f7fa;
}

.checkbox-label input[type="checkbox"] {
    width: 19px;
    height: 19px;
    cursor: pointer;
}

/* ================================
   PAYMENT METHOD CARDS
   ================================ */

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.payment-card {
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 15px;
    padding: 26px 22px;
    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, #17A2B8 0%, #12808F 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: #17A2B8;
    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: 68px;
    height: 68px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #17A2B8 0%, #12808F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.7rem;
}

.payment-icon.mercadopago-icon {
    background: linear-gradient(135deg, #009EE3 0%, #0077CC 100%);
}

.payment-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.payment-card p {
    color: #666;
    margin-bottom: 12px;
    font-size: 0.88rem;
}

.payment-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #28a745;
    color: white;
    padding: 4px 13px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.payment-details {
    margin-top: 24px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.payment-info-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 26px;
    border-left: 4px solid #17A2B8;
}

.payment-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 13px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-info-card h3 i {
    color: #17A2B8;
}

.payment-info-card p {
    color: #666;
    margin-bottom: 18px;
    line-height: 1.6;
}

.payment-breakdown {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 18px;
    margin: 18px 0;
    border: 1px solid #e0e0e0;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 11px 0;
    border-bottom: 1px dashed #e0e0e0;
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-item span {
    color: #666;
    font-size: 0.96rem;
}

.breakdown-item strong {
    color: #333;
    font-size: 0.96rem;
    font-family: 'Courier New', monospace;
}

.breakdown-item.total {
    border-top: 2px solid #17A2B8;
    border-bottom: none;
    margin-top: 8px;
    padding-top: 14px;
}

.breakdown-item.total span {
    color: #333;
    font-weight: 700;
    font-size: 1.15rem;
}

.breakdown-item.total strong {
    color: #17A2B8;
    font-size: 1.4rem;
    font-weight: 700;
}

.payment-button-wrapper {
    margin: 18px 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.05rem;
    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: 14px;
    margin-top: 18px;
    display: flex;
    gap: 13px;
    align-items: start;
}

.payment-note i {
    color: #856404;
    font-size: 1.4rem;
    margin-top: 2px;
}

.payment-note p {
    color: #856404;
    margin: 0;
    line-height: 1.6;
}

.bank-info {
    background: white;
    border-radius: 10px;
    padding: 22px;
    margin: 18px 0;
}

.bank-section-title {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 18px;
    padding-bottom: 9px;
    border-bottom: 2px solid #17A2B8;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bank-section-title i {
    color: #17A2B8;
}

.bank-detail {
    display: flex;
    justify-content: space-between;
    padding: 11px 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: #17A2B8;
    font-weight: 700;
    font-size: 1rem;
}

.transfer-type-selector {
    display: flex;
    gap: 10px;
    margin: 18px 0;
    background: #f8f9fa;
    padding: 9px;
    border-radius: 10px;
}

.transfer-type-btn {
    flex: 1;
    padding: 13px 18px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.96rem;
    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: #17A2B8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.transfer-type-btn.active {
    background: linear-gradient(135deg, #17A2B8 0%, #12808F 100%);
    border-color: #17A2B8;
    color: white;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.international-note {
    background: #e3f2fd;
    border: 2px solid #2196f3;
    border-radius: 10px;
    padding: 18px;
    margin-top: 18px;
    display: flex;
    gap: 13px;
    align-items: start;
}

.international-note i {
    color: #1976d2;
    font-size: 1.6rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.international-note strong {
    color: #1565c0;
    display: block;
    margin-bottom: 9px;
    font-size: 1.05rem;
}

.international-note ul {
    margin: 9px 0 0 0;
    padding-left: 18px;
    color: #0d47a1;
}

.international-note li {
    margin: 7px 0;
    line-height: 1.5;
}

.transfer-note {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 10px;
    padding: 14px;
    margin-top: 18px;
    display: flex;
    gap: 13px;
    align-items: start;
}

.transfer-note i {
    color: #856404;
    font-size: 1.4rem;
    margin-top: 2px;
}

.transfer-note p {
    color: #856404;
    margin: 0;
    line-height: 1.6;
}

.payment-options-list {
    list-style: none;
    padding: 0;
    margin: 18px 0;
}

.payment-options-list li {
    padding: 11px 14px;
    background: white;
    border-radius: 8px;
    margin-bottom: 9px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-options-list li i {
    color: #28a745;
    font-size: 1.1rem;
}

.cash-note {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    border-radius: 10px;
    padding: 14px;
    margin-top: 18px;
    display: flex;
    gap: 13px;
    align-items: start;
}

.cash-note i {
    color: #0c5460;
    font-size: 1.4rem;
    margin-top: 2px;
}

.cash-note p {
    color: #0c5460;
    margin: 0;
    line-height: 1.6;
}

#paypal-button-container {
    max-width: 460px;
    margin: 0 auto;
    min-height: 50px;
}

.terms-checkbox {
    margin-top: 22px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.terms-checkbox label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.terms-checkbox input[type="checkbox"] {
    width: 19px;
    height: 19px;
}

.terms-checkbox a {
    color: #17A2B8;
    text-decoration: underline;
    font-weight: 600;
}

/* ================================
   SUMMARY PANEL (RIGHT COLUMN)
   ================================ */

.summary-panel {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 26px;
}

.summary-panel-title {
    font-size: 1.15rem;
    color: #0a2540;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-panel-title i {
    color: #17A2B8;
}

.summary-mini {
    text-align: center;
    padding: 24px 10px;
    color: #999;
}

.summary-mini i {
    font-size: 2.2rem;
    color: #e0c878;
    margin-bottom: 12px;
    display: block;
}

.summary-mini p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.summary-mini-filled {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #eee;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    font-size: 0.9rem;
}

.summary-row span {
    color: #888;
    flex-shrink: 0;
}

.summary-row strong {
    color: #0a2540;
    text-align: right;
    font-size: 0.92rem;
}

.summary-price-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(184, 134, 11, 0.08) 100%);
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 18px;
}

.summary-price-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.92rem;
}

.summary-price-row span {
    color: #777;
}

.summary-price-row strong {
    color: #333;
    font-family: 'Courier New', monospace;
}

.summary-total-row {
    border-top: 2px solid #17A2B8;
    margin-top: 6px;
    padding-top: 14px;
}

.summary-total-row span {
    font-weight: 700;
    color: #0a2540;
    font-size: 1.05rem;
    font-family: inherit;
}

.summary-total-row strong {
    color: #12808F;
    font-size: 1.5rem;
    font-weight: 700;
}

.summary-price-note {
    text-align: center;
    font-size: 0.78rem;
    color: #999;
    margin-top: 10px;
}

.summary-payment-method {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 0.88rem;
}

.summary-payment-method span {
    color: #888;
}

.summary-payment-method strong {
    color: #0a2540;
}

.btn-confirm-reservation {
    width: 100%;
    padding: 16px;
    font-size: 1.02rem;
}

.summary-helper-text {
    text-align: center;
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 12px;
    line-height: 1.5;
}

/* ================================
   GENERIC BUTTONS
   ================================ */

.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;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #17A2B8 0%, #12808F 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);
}

.btn-success:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* ================================
   MOBILE STICKY SUMMARY BAR
   ================================ */

.mobile-sticky-bar {
    display: none;
}

.mobile-sticky-toggle {
    width: 100%;
    background: white;
    border: none;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: inherit;
}

.mobile-sticky-total {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mobile-sticky-label {
    font-size: 0.72rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-sticky-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: #12808F;
}

.mobile-sticky-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #17A2B8;
    font-weight: 600;
    font-size: 0.88rem;
}

/* ================================
   SUCCESS MESSAGE
   ================================ */

.success-message {
    text-align: center;
    padding: 60px 20px;
    animation: fadeIn 0.5s ease;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.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.6rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.success-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 35px;
}

.success-thanks-box {
    background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(184,134,11,0.1));
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
    border: 1px solid rgba(212,175,55,0.3);
    text-align: left;
}

.success-thanks-box h3 {
    color: #17A2B8;
    margin: 0 0 15px 0;
    font-size: 1.25rem;
}

.success-thanks-box p {
    color: #555;
    margin: 0 0 14px 0;
    line-height: 1.7;
}

.reservation-details-box {
    background: linear-gradient(135deg, #17A2B8 0%, #12808F 100%);
    border-radius: 15px;
    padding: 28px;
    margin: 28px 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: 14px;
    color: white;
}

.detail-item i {
    font-size: 2.3rem;
    opacity: 0.9;
}

.detail-item .detail-label {
    display: block;
    font-size: 0.88rem;
    opacity: 0.9;
    margin-bottom: 4px;
}

.detail-item .detail-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
}

.success-info {
    margin: 35px 0;
}

.info-card {
    background: #f8f9fa;
    border-left: 4px solid #17A2B8;
    border-radius: 10px;
    padding: 22px;
    margin-bottom: 28px;
    display: flex;
    gap: 18px;
    align-items: start;
    text-align: left;
}

.info-card i {
    font-size: 1.8rem;
    color: #17A2B8;
    margin-top: 5px;
}

.info-card h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 9px;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.contact-card {
    background: white;
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 1.8rem;
    color: #17A2B8;
}

.contact-card.contact-card:nth-child(2) i {
    color: #25D366;
}

.contact-card span {
    display: block;
    font-size: 0.88rem;
    color: #666;
}

.contact-card strong {
    display: block;
    font-size: 0.98rem;
    color: #333;
    margin-top: 4px;
}

.success-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin: 35px 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: 35px;
    padding-top: 28px;
    border-top: 2px solid #e0e0e0;
}

.success-footer p {
    font-size: 1.05rem;
    color: #17A2B8;
    font-weight: 500;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1100px) {
    .reservation-layout {
        grid-template-columns: 1fr;
    }

    .summary-col {
        position: static;
        display: none;
    }

    .summary-col.mobile-open {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9000;
        max-height: 80vh;
        overflow-y: auto;
        box-shadow: 0 -10px 40px rgba(0,0,0,0.2);
    }

    .summary-col.mobile-open .summary-panel {
        border-radius: 20px 20px 0 0;
    }

    .mobile-sticky-bar {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 8000;
        box-shadow: 0 -6px 20px rgba(0,0,0,0.12);
        border-radius: 16px 16px 0 0;
    }

    .reservation-container {
        padding-bottom: 90px;
    }
}

@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) {
    .acc-header {
        padding: 18px 18px;
    }

    .acc-section.open .acc-body[data-body] {
        padding: 0 18px 22px;
    }

    .acc-body[data-body] {
        padding: 0 18px;
    }

    .reservation-hero h1 {
        font-size: 2rem;
    }

    .service-types,
    .vehicle-grid,
    .payment-methods {
        grid-template-columns: 1fr;
    }

    .acc-footer {
        flex-direction: column-reverse;
    }

    .btn-acc-next {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }

    .btn-acc-back {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .reservation-hero {
        padding: 40px 20px;
    }

    .reservation-hero h1 {
        font-size: 1.5rem;
    }

    .acc-title {
        font-size: 1.02rem;
    }

    .service-card h3 {
        font-size: 1.15rem;
    }
}