/* Checkout Page Styles */
.checkout-header {
    background: #fff;
    border-bottom: 1px solid #eef2f6;
}

.checkout-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.checkout-steps::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 0;
    right: 0;
    height: 2px;
    background: #eef2f6;
    z-index: 1;
}

.step-item {
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #94a3b8;
}

.step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}

.step-item.active .step-circle {
    border-color: #82b440;
    background: #82b440;
    color: #fff;
    box-shadow: 0 0 0 4px rgba(130, 180, 64, 0.2);
}

.step-item.active .step-label {
    color: #1e293b;
    font-weight: 600;
}

.step-item.completed .step-circle {
    background: #10b981;
    border-color: #10b981;
    color: #fff;
}

/* Tour Summary Card */
.tour-summary-card {
    position: sticky;
    top: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.summary-total {
    border-top: 1px dashed #e2e8f0;
    padding-top: 1rem;
    margin-top: 1rem;
}

/* Form Styles */
.form-section {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    min-height: 500px;
    /* Prevent footer jump */
    transition: all 0.4s ease;
}

.checkout-step-content.fade-in {
    animation: fadeInStep 0.5s ease forwards;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    position: relative;
    text-transform: none;
    /* Override uppercase from theme if needed */
}

/* Remove horizontal lines from theme */
.section-title::before,
.section-title::after {
    display: none !important;
}

.section-number {
    background: #e0f2fe;
    color: #0284c7;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-right: 0.75rem;
}

/* Fix Calendar Cursor */
.fc-daygrid-day:not(.fc-day-disabled) {
    cursor: pointer !important;
}

.fc-daygrid-day:hover:not(.fc-day-disabled) {
    background-color: #f0fdf4 !important;
}

/* Capitalize Calendar Title (Month) */
.fc-toolbar-title {
    text-transform: capitalize !important;
}

/* Reduced Font Sizes for Contact Info */
.contact-info-section .form-label {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}

.contact-info-section .form-control {
    font-size: 0.9rem;
    padding: 0.5rem 0.85rem;
}

.contact-info-section .col-12,
.contact-info-section .col-md-6 {
    margin-bottom: 0.5rem;
}